import { useTranslation } from "react-i18next" import { PlaceholderCell } from "../placeholder-cell" type EmailCellProps = { email?: string | null } export const EmailCell = ({ email }: EmailCellProps) => { if (!email) { return } return (