Files
automatisch/packages/web/src/components/PageTitle/index.tsx
2021-11-25 00:39:36 +01:00

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>
);
}