mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-20 21:18:13 +02:00
14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
import { RuntimeConfig } from "@/components/providers/runtime-config.server";
|
|
import { DashboardShell } from "./dashboard-shell";
|
|
|
|
interface DashboardLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function DashboardLayout({ children }: DashboardLayoutProps) {
|
|
return (
|
|
<RuntimeConfig>
|
|
<DashboardShell>{children}</DashboardShell>
|
|
</RuntimeConfig>
|
|
);
|
|
}
|