import Typography from '@mui/material/Typography'; type PageTitleProps = { children: React.ReactNode; }; export default function PageTitle(props: PageTitleProps) { const { children } = props; return ( {children} ); }