import { useTranslation } from "react-i18next" import { PlaceholderCell } from "../../common/placeholder-cell" type DescriptionCellProps = { description?: string | null } export const DescriptionCell = ({ description }: DescriptionCellProps) => { if (!description) { return } return (
{description}
) } export const DescriptionHeader = () => { const { t } = useTranslation() return (
{t("fields.description")}
) }