import {FC} from 'react' type Props = { employer_name?: string } const EmployerCell: FC = ({employer_name}) => (
{employer_name}
) export {EmployerCell}