Sha256: c72d7c3caccd8fc96529f9424f76ad0ddf1b1b13bac7f23fbdf36dd938a3378d
Contents?: true
Size: 390 Bytes
Versions: 6
Compression:
Stored size: 390 Bytes
Contents
import { Stack } from '@mui/material' import Content from './content' import Sidebar from '@/common/components/sidebar' const MainLayout = ({ children }) => { return ( <Stack sx={{ width: '100%', height: '100%' }} direction='row' justifyContent='flex-start' gap={1}> <Sidebar /> <Content> {children} </Content> </Stack> ) } export default MainLayout
Version data entries
6 entries across 6 versions & 1 rubygems