The <T> component
Translating your content with the <T> React component
<T>This content will be translated</T>Props
prop
type
description
Limitations when using the <T> component
{/* this is ok, since <a> is a plain HTML tag */}
<T>
<a href="mailto:[email protected]">Please send us an email</a>
</T>
{/* this will NOT work, since <MyButton> is a React component */}
<T>
<MyButton>Click me</MyButton>
</T>Last updated