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,28 @@
import Card from '@mui/material/Card';
import CardActionArea from '@mui/material/CardActionArea';
import CardContent from '@mui/material/CardContent';
import Typography from '@mui/material/Typography';
type AppRowProps = {
icon?: React.ReactNode;
name: string;
connectionNumber?: number;
flowNumber?: number;
}
export default function AppRow(props: AppRowProps) {
const { name } = props;
return (
<Card sx={{ my: 1 }}>
<CardActionArea>
<CardContent>
<Typography gutterBottom variant="h6" component="div">
{name}
</Typography>
</CardContent>
</CardActionArea>
</Card>
);
}