Files
automatisch/packages/web/src/components/PageTitle/index.tsx
2022-04-01 23:32:03 +03:00

10 lines
284 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} />
);
}