feat: Add dummy pages

This commit is contained in:
Ali BARIN
2021-10-07 01:10:19 +02:00
parent 3aa90bf29f
commit 36ed8d7838
12 changed files with 124 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
import Typography from '@mui/material/Typography';
type PageTitleProps = {
children: React.ReactNode;
};
export default function PageTitle(props: PageTitleProps) {
const { children } = props;
return (
<Typography variant="h4">
{children}
</Typography>
);
}