I have function
const myTranslation = async () => {
const translation = await i18n.loadNamespaces(['home']);
console.log(translation); //-> return undefinded
console.log(translation.t('title')); //-> return Uncaught (in promise) TypeError: Cannot read property 't' of undefined
};
How get my translation home.title ?