File size: 463 Bytes
3206347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
  );
}