importReactfrom"react";
import { useTranslation } from"react-i18next";
constDemo = () => {
// To use a specific translation file, go to the main name of the file (nameSpace)const { t } = useTranslation("exampleSum");
return<>{t("totalAmount")}</>;
};
exportdefaultDemo;