import { VFC } from 'react'; import { LinkCell } from 'component/common/Table/cells/LinkCell/LinkCell'; interface IFeatureNameCellProps { row: { original: { name: string; description: string; project: string; }; }; } export const FeatureNameCell: VFC = ({ row }) => ( );