Hello, my question is if
Examples:
values={{ what: 'world'}}
components={[
]}
/>
values={{ what: 'world'}}
components={[Text]}
/>
What error you get? should work with react-native...but you might have to define a parent component for your case -> as a string is not a valid react-native component...https://react.i18next.com/latest/trans-component#trans-props --> parent
Oh yes, my bad, so i guess this is the correct way to do it?
values={{what: 'world'}}
parent={Text}
components={[
/>
<Text>
<Trans
defaults="hello {{what}}"
values={{ what: 'world'}}
/>
</Text>
Most helpful comment
Oh yes, my bad, so i guess this is the correct way to do it?
values={{what: 'world'}}
parent={Text}
components={[
/>