17 lines
322 B
TypeScript
17 lines
322 B
TypeScript
|
|
import { AppShell } from '@/components/layout/AppShell';
|
||
|
|
import { Providers } from '@/components/providers/Providers';
|
||
|
|
|
||
|
|
export default function AppLayout({
|
||
|
|
children,
|
||
|
|
}: Readonly<{
|
||
|
|
children: React.ReactNode;
|
||
|
|
}>) {
|
||
|
|
return (
|
||
|
|
<Providers>
|
||
|
|
<AppShell>
|
||
|
|
{children}
|
||
|
|
</AppShell>
|
||
|
|
</Providers>
|
||
|
|
);
|
||
|
|
}
|