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