Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { AppShell } from "@/components/layout/AppShell";
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <AppShell>{children}</AppShell>;
|
|
}
|