import { FormControl, InputLabel, MenuItem, Select } from '@mui/material'; import { useTranslation } from 'next-i18next'; const Sort = ({ sort, handleSortChange }) => { const { t } = useTranslation('products'); return ( <> {t('products:sort')} ); }; export default Sort;