import React, { ReactNode } from 'react'; import { Box } from '@mui/material'; const CenterScreen = ({ children, fullHeight, ...rest }: { children: ReactNode, fullHeight?: boolean, [x:string]: any }) => { let minHeight; if (fullHeight) { minHeight = '100vh'; } return ( {children} ); }; export default CenterScreen;