import { CellContext } from '@tanstack/react-table'; import { Authorized } from '@/react/hooks/useUser'; import { Link } from '@@/Link'; import { Ingress } from '../../types'; import { columnHelper } from './helper'; export const name = columnHelper.accessor('Name', { header: 'Name', cell: Cell, id: 'name', }); function Cell({ row, getValue }: CellContext) { const name = getValue(); return ( {name} ); }