import { connect } from 'react-redux'; import { AddButton } from '../../common/AddButton'; import { TableCell, TableRow, TableSortLabel } from '@mui/material'; import { useNavigate } from 'react-router-dom'; const AdminGoodListHeader = ({ onSortChange, sort }) => { const navigate = useNavigate(); return ( onSortChange(sort === '_id' ? '-_id' : '_id')} > # onSortChange(sort === 'name' ? '-name' : 'name')} > Назва Зображення onSortChange(sort === 'price' ? '-price' : 'price')} > Ціна onSortChange(sort === 'amount' ? '-amount' : 'amount')} > Кількість Категорії { navigate('/admin/good/'); }} /> ); }; export { AdminGoodListHeader };