"use client"; import { FC, PropsWithChildren, useState } from "react"; import { Grid } from "@mui/material"; import { Sidebar } from "./Sidebar"; export const InternalLayout: FC = ({ children }) => { const [open, setOpen] = useState(true); return ( {children as any} ); };