Files
automatisch/packages/web/src/components/PageTitle/index.tsx
2022-11-05 23:57:33 +01:00

9 lines
275 B
TypeScript

import * as React from 'react';
import Typography, { TypographyProps } from '@mui/material/Typography';
type PageTitleProps = TypographyProps;
export default function PageTitle(props: PageTitleProps): React.ReactElement {
return <Typography variant="h3" {...props} />;
}