14 lines
187 B
TypeScript
14 lines
187 B
TypeScript
import AppLayout from './_layout'
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<AppLayout>
|
|
{children}
|
|
</AppLayout>
|
|
);
|
|
}
|