npm install i18next react-i18next import { useTranslation } from "react-i18next"; function Header() { const { t, i18n } = useTranslation(); return ( {t("welcome")} i18n.changeLanguage("fr")}>FR ); } // en.json // { "welcome": "Welcome!" } // fr.json // { "welcome": "Bienvenue!" }