| 1234567891011121314151617181920212223242526 |
- import { FormControl, InputLabel, MenuItem, Select } from '@mui/material';
-
- const Sort = ({ sort, handleSortChange }) => {
- return (
- <>
- <FormControl sx={{ width: '200px', paddingRight: '15px' }}>
- <InputLabel id="sort-label">Sort</InputLabel>
- <Select
- MenuProps={{
- disableScrollLock: true,
- }}
- label="Sort"
- labelId="sort-label"
- id="sort-select-helper"
- value={sort}
- onChange={handleSortChange}
- >
- <MenuItem value="asc">Name - A-Z</MenuItem>
- <MenuItem value="desc">Name - Z-A</MenuItem>
- </Select>
- </FormControl>
- </>
- );
- };
-
- export default Sort;
|