Files
automatisch/packages/web/src/pages/Flows/index.tsx
2021-12-14 01:16:56 +01:00

13 lines
224 B
TypeScript

import Box from '@mui/material/Box';
import Container from 'components/Container';
export default function Flows() {
return (
<Box sx={{ py: 3 }}>
<Container>
Flows
</Container>
</Box>
);
};