import {FC} from 'react' type Props = { agent?: string } const AgentCell: FC = ({agent}) => ( <> {agent &&
{agent}
} ) export {AgentCell}