mirror of
https://github.com/status-im/status-tutorials.git
synced 2026-08-31 12:11:10 +00:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
// #region Global Imports
|
|
import NextI18Next from "next-i18next";
|
|
// #endregion Global Imports
|
|
|
|
const NextI18NextInstance = new NextI18Next({
|
|
defaultLanguage: "en",
|
|
otherLanguages: ["es", "tr"],
|
|
});
|
|
|
|
export const { appWithTranslation, withTranslation } = NextI18NextInstance;
|
|
|
|
export default NextI18NextInstance;
|