import { memo } from 'react'; import { Box, CircularProgress } from '@mui/material'; import type { SxProps, Theme } from '@mui/material'; const containerStyles: SxProps = { display: 'flex', justifyContent: 'center', alignItems: 'center', minHeight: '200px', backgroundColor: 'background.default', borderRadius: 1, border: '1px solid', borderColor: 'divider' }; const LazyLoader = memo(() => ( )); export default LazyLoader;