import { FC, PropsWithChildren } from 'react' import { Box, Container as MuiContainer } from '@mui/material' import { usePageLayoutContext } from '../../providers' const BlockContainer: FC = ({ children, ...props }) => { const { loadContainer } = usePageLayoutContext() if (!loadContainer) { return {children} } return {children} } export default BlockContainer