import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar"; import CallWidget from "@/components/widget/call"; import WithWidgetMiddleware from "@/core/middlewares/withWidget"; import { SocketProvider } from "@/lib/contexts/socket"; import { Stack } from "@mui/material"; const Layout = ({ children }) => { return ( {children} ); }; export default Layout;