Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526
  1. import { FormControl, InputLabel, MenuItem, Select } from '@mui/material';
  2. const Sort = ({ sort, handleSortChange }) => {
  3. return (
  4. <>
  5. <FormControl sx={{ width: '200px', paddingRight: '15px' }}>
  6. <InputLabel id="sort-label">Sort</InputLabel>
  7. <Select
  8. MenuProps={{
  9. disableScrollLock: true,
  10. }}
  11. label="Sort"
  12. labelId="sort-label"
  13. id="sort-select-helper"
  14. value={sort}
  15. onChange={handleSortChange}
  16. >
  17. <MenuItem value="asc">Name - A-Z</MenuItem>
  18. <MenuItem value="desc">Name - Z-A</MenuItem>
  19. </Select>
  20. </FormControl>
  21. </>
  22. );
  23. };
  24. export default Sort;