import { useTranslation } from "react-i18next" import { PlaceholderCell } from "../../common/placeholder-cell" export const DisplayIdCell = ({ displayId }: { displayId?: number | null }) => { if (!displayId) { return } return (
#{displayId}
) } export const DisplayIdHeader = () => { const { t } = useTranslation() return (
{t("fields.order")}
) }