import type { ReactNode } from 'react'; import 'styles/globals.css'; import { staticPath } from 'utils/$path'; import styles from './layout.module.css'; export default function RootLayout({ children }: { children: ReactNode }) { return ( frourio-todo-app
{children}
); }