import * as React from 'react'; import { ThemeProvider } from '@mui/material/styles'; import CssBaseline from '@mui/material/CssBaseline'; import theme from './theme'; export default function withRoot

( Component: React.ComponentType

, ) { function WithRoot(props: P) { return ( {/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */} ); } return WithRoot; }