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