SurfSense/surfsense_web/app/dashboard/layout.tsx

15 lines
373 B
TypeScript
Raw Normal View History

import { RuntimeConfig } from "@/components/providers/runtime-config.server";
import { DashboardShell } from "./dashboard-shell";
2025-06-09 15:50:15 -07:00
interface DashboardLayoutProps {
2025-07-27 10:05:37 -07:00
children: React.ReactNode;
2025-06-09 15:50:15 -07:00
}
export default function DashboardLayout({ children }: DashboardLayoutProps) {
return (
<RuntimeConfig>
<DashboardShell>{children}</DashboardShell>
</RuntimeConfig>
);
2025-07-27 10:05:37 -07:00
}