interface IProps { children: React.ReactNode; } function RootLayout({ children }: IProps) { return (
{children}
); } export default RootLayout;