import { I18n } from 'i18n-js'; import tk from './locales/tk.json'; const i18n = new I18n({ tk, }); i18n.locale = 'tk'; i18n.enableFallback = true; // Function to initialize the language export const initializeLanguage = async () => { i18n.locale = 'tk'; }; export default i18n;