13 lines
224 B
TypeScript
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>
|
|
);
|
|
};
|