You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
609 B
25 lines
609 B
import { Box, Grid } from '@mui/material'; |
|
import { FC } from 'react'; |
|
|
|
import Header from '../../components/Header'; |
|
|
|
import { |
|
ComplexOperationsPanel, |
|
SimpleOperationsPanel, |
|
} from '../../components/StrikerConfig'; |
|
|
|
const Config: FC = () => ( |
|
<Box sx={{ display: 'flex', flexDirection: 'column' }}> |
|
<Header /> |
|
<Grid container columns={{ xs: 1, md: 3, lg: 4 }}> |
|
<Grid item xs={1}> |
|
<SimpleOperationsPanel strikerHostName="STRIKER NAME" /> |
|
</Grid> |
|
<Grid item md={2} xs={1}> |
|
<ComplexOperationsPanel /> |
|
</Grid> |
|
</Grid> |
|
</Box> |
|
); |
|
|
|
export default Config;
|
|
|