10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
"use client";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export function InvalidSettlementBatchId(): React.ReactElement {
|
|
const { t } = useTranslation("settlement");
|
|
|
|
return <p className="text-destructive text-sm">{t("invalidBatchId")}</p>;
|
|
}
|