import { CellProps, Column } from 'react-table'; import { Clock } from 'lucide-react'; import { Job } from '@/react/nomad/types'; export const actions: Column = { Header: 'Job Actions', id: 'actions', disableFilters: true, canHide: true, disableResizing: true, width: '110px', sortType: 'string', Filter: () => null, Cell: ActionsCell, }; export function ActionsCell({ row }: CellProps) { return ( // eslint-disable-next-line react/jsx-props-no-spreading
); }