import { useTranslation } from "react-i18next" import { DateCell } from "../../common/date-cell" import { PlaceholderCell } from "../../common/placeholder-cell" type FirstSeenCellProps = { createdAt?: Date | string | null } export const FirstSeenCell = ({ createdAt }: FirstSeenCellProps) => { if (!createdAt) { return } return } export const FirstSeenHeader = () => { const { t } = useTranslation() return (
{t("fields.createdAt")}
) }