2022-07-19 20:30:25 +00:00
|
|
|
import { FC } from 'react';
|
|
|
|
import { Box as MUIBox } from '@mui/material';
|
2022-07-06 21:35:55 +00:00
|
|
|
|
2022-07-19 20:30:25 +00:00
|
|
|
import StrikerInitForm from '../../components/StrikerInitForm';
|
2022-07-06 21:35:55 +00:00
|
|
|
|
|
|
|
const Init: FC = () => (
|
2022-07-09 02:33:55 +00:00
|
|
|
<MUIBox
|
|
|
|
sx={{
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
}}
|
|
|
|
>
|
2022-07-19 20:30:25 +00:00
|
|
|
<StrikerInitForm />
|
2022-07-06 21:35:55 +00:00
|
|
|
</MUIBox>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Init;
|