import { Host } from "../../functions/exports"; import { sortByAnyField } from "../../functions/sort"; function TableHead() { const handleSort = (sortBy: keyof Host) => { sortByAnyField(sortBy); }; return ( Name Iface IP MAC Hardware Date Known Online ) } export default TableHead