import { Tooltip } from "@medusajs/ui"
import { useTranslation } from "react-i18next"
import { useDate } from "../../../../../hooks/use-date"
import { PlaceholderCell } from "../placeholder-cell"
type DateCellProps = {
date: Date | string | undefined
}
export const CreatedAtCell = ({ date }: DateCellProps) => {
const { getFullDate } = useDate()
if (!date) {
return