import '../styles/globals.css' type AppLayoutProps = { children: React.ReactNode } export default function MainAppLayout({ children }: AppLayoutProps) { return {children} }