UNPKG

viamobi-component

Version:
12 lines (8 loc) 299 B
import React from "react"; import { useTranslation } from "react-i18next"; const Demo = () => { // To use a specific translation file, go to the main name of the file (nameSpace) const { t } = useTranslation("exampleSum"); return <>{t("totalAmount")}</>; }; export default Demo;