I have some dynamic content to translate which includes text and links in it, I wonder how do you use i18next in react native to display this content properly so the tags shows clickable in the view.
{"someContent": "Hello, please click the <a>link</a>"}
import {useTranslation} from 'react-i18next';
const {t} = useTranslation();
<Text>{t('someContent')}</Text>
The above just prints out the whole content not rendering the tags. Wondering how to render this content properly in the view! I wonder can we use something like dangerouslySetInnerHTML={{ __html: "someHtml" }}? If so, how to use in this case?