12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
|
|
import type { ReactNode } from "react";
|
||
|
|
|
||
|
|
import { AppShell } from "@/components/layout/app-shell";
|
||
|
|
|
||
|
|
export default function AppLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: ReactNode;
|
||
|
|
}) {
|
||
|
|
return <AppShell>{children}</AppShell>;
|
||
|
|
}
|