import { AddButton } from "../../common/AddButton"; import { TableCell, TableRow, TableSortLabel } from "@mui/material"; import { useNavigate } from "react-router-dom"; const AdminUserListHeader = ({ onSortChange, sort }) => { const navigate = useNavigate(); return ( onSortChange(sort === "_id" ? "-_id" : "_id")} > # Аватар onSortChange(sort === "username" ? "-username" : "username")} > Username onSortChange(sort === "is_active" ? "-is_active" : "is_active")} > Активний onSortChange(sort === "is_superuser" ? "-is_superuser" : "is_superuser")} > Адміністратор { navigate("/admin/user/"); }} /> ); }; export { AdminUserListHeader };