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