import { PropsWithChildren } from "react";

export default function AppContentLayout({ children }: PropsWithChildren) {
    return (
        <div className="app-content">
            {children}
        </div>
    )
}
