import { CellProps, Column } from 'react-table'; import { useEnvironmentId } from '@/react/hooks/useEnvironmentId'; import { Link } from '@@/Link'; import { Service } from '../../types'; export const application: Column = { Header: 'Application', accessor: (row) => (row.Applications ? row.Applications[0].Name : ''), id: 'application', Cell: ({ row, value: appname }: CellProps) => { const environmentId = useEnvironmentId(); return appname ? ( {appname} ) : ( '-' ); }, canHide: true, disableFilters: true, };