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