import { TabPanel as MuiTabPanel } from '@mui/lab'; type Props = { children: JSX.Element; value: string; }; export const TabPanel = ({ children, value }: Props): JSX.Element => ( {children} );