flockstr/app/(app)/layout.tsx
2023-10-13 19:02:59 -04:00

14 lines
187 B
TypeScript

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