import { FC } from 'react'; // import { Sidebar } from './sidebar/Sidebar'; import { Box, Toolbar } from '@mui/material'; interface LayoutProps { children: React.ReactNode; } // const drawerWidth = 240; export const Layout: FC = ({ children }) => { return ( {/* */} {children} ); };