6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
import { AppShell } from "@/components/AppShell";
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
return <AppShell>{children}</AppShell>;
|
|
}
|