Remix - Advanced Patterns
In this Remix i18n setup, translations are not showing and the app always displays keys instead of translated text. What is the most probable cause?
function MyComponent() {
const { t } = useTranslation;
return <p>{t('welcome')}</p>;
}