feat: Add dummy pages
This commit is contained in:
15
packages/web/src/components/PageTitle/index.tsx
Normal file
15
packages/web/src/components/PageTitle/index.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user