"use client" import SideNav from "@/app/[lang]/dashboard/components/server/sidenav"; import dashboardAppModule from "@/app/[lang]/dashboard/module/dashboard-app-module"; import { DiContext } from "@/bootstrap/di/di-context"; import { useRef } from "react"; export default function Layout({ children }: { children: React.ReactNode }) { const di = useRef(dashboardAppModule()) return (
{children}
); }