append the URL with ?lng=hi to change the language
- added i18 file ---> https://github.com/amananku26/i18n-reactjs-typescript/blob/main/src/i18n.tsx
- added locale translation ---> https://github.com/amananku26/i18n-reactjs-typescript/tree/main/src/locales
- import "./i18n" in. ---> https://github.com/amananku26/i18n-reactjs-typescript/blob/main/src/index.tsx
app.tsx
import { useTranslation } from "react-i18next";
export default function App() {
const { t } = useTranslation();
return (
<div className="App">
{t("text1")}
</div>
);
}```
use this way to get the translation