feat: additional options
This commit is contained in:
@@ -3,6 +3,7 @@ import SwipeableDrawer from '@mui/material/SwipeableDrawer';
|
|||||||
import Typography from '@mui/material/Typography';
|
import Typography from '@mui/material/Typography';
|
||||||
import Radio from '@mui/material/Radio';
|
import Radio from '@mui/material/Radio';
|
||||||
import RadioGroup from '@mui/material/RadioGroup';
|
import RadioGroup from '@mui/material/RadioGroup';
|
||||||
|
import { Button } from '@mui/material';
|
||||||
import FormControlLabel from '@mui/material/FormControlLabel';
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
||||||
import FormControl from '@mui/material/FormControl';
|
import FormControl from '@mui/material/FormControl';
|
||||||
import FormLabel from '@mui/material/FormLabel';
|
import FormLabel from '@mui/material/FormLabel';
|
||||||
@@ -170,16 +171,22 @@ export const InterpretationLog = () => {
|
|||||||
</Table>
|
</Table>
|
||||||
</TableContainer>
|
</TableContainer>
|
||||||
|
|
||||||
<FormControl>
|
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginTop: '20px' }}>
|
||||||
<FormLabel>
|
<FormControl>
|
||||||
<h4>What is the maximum number of rows you want to extract?</h4>
|
<FormLabel>
|
||||||
</FormLabel>
|
<h4>What is the maximum number of rows you want to extract?</h4>
|
||||||
<RadioGroup row>
|
</FormLabel>
|
||||||
<FormControlLabel value="10" control={<Radio />} label="10" />
|
<RadioGroup row>
|
||||||
<FormControlLabel value="100" control={<Radio />} label="100" />
|
<FormControlLabel value="10" control={<Radio />} label="10" />
|
||||||
<FormControlLabel value="custom" control={<Radio />} label="Custom" />
|
<FormControlLabel value="100" control={<Radio />} label="100" />
|
||||||
</RadioGroup>
|
<FormControlLabel value="custom" control={<Radio />} label="Custom" />
|
||||||
</FormControl>
|
</RadioGroup>
|
||||||
|
</FormControl>
|
||||||
|
<div>
|
||||||
|
<h4>Additional Options</h4>
|
||||||
|
<Button variant="contained" color="primary">Action</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
) : null
|
) : null
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user