15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import Typography from '@mui/material/Typography';
|
|
|
|
type PageTitleProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export default function PageTitle(props: PageTitleProps) {
|
|
const { children } = props;
|
|
|
|
return (
|
|
<Typography variant="h3">
|
|
{children}
|
|
</Typography>
|
|
);
|
|
} |