refactor(web): remove typescript
This commit is contained in:
19
packages/web/src/pages/Flow/index.jsx
Normal file
19
packages/web/src/pages/Flow/index.jsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import { useParams } from 'react-router-dom';
|
||||
import Box from '@mui/material/Box';
|
||||
import Grid from '@mui/material/Grid';
|
||||
import Container from 'components/Container';
|
||||
export default function Flow() {
|
||||
const { flowId } = useParams();
|
||||
return (
|
||||
<Box sx={{ py: 3 }}>
|
||||
<Container>
|
||||
<Grid container>
|
||||
<Grid item xs>
|
||||
{flowId}
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Container>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user