Spaces:
Runtime error
Runtime error
| import type { ReactNode } from "react"; | |
| import { DashboardShell } from "@/components/dashboard/dashboard-shell"; | |
| import { requireCurrentUser } from "@/server/auth/session"; | |
| export default async function DashboardLayout({ | |
| children, | |
| }: { | |
| children: ReactNode; | |
| }) { | |
| const user = await requireCurrentUser(); | |
| return <DashboardShell user={user}>{children}</DashboardShell>; | |
| } | |