Package Exports
- use-t
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (use-t) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
🗺
use-t
Translations for React.
Installation
npm i use-t
Reference
import {Provider, useT, withT, Trans, Consumer, context} from 'use-t';Example
import {Provider, useT} from 'use-t';
const Hello = (props) => {
const [t] = useT();
return (
<div>
<div>
{t('Hello')}, {props.name}!
</div>
<div>
{t.t('hello_user')`Hello, ${props.name}!`}
</div>
</div>
);
};
<Provider locale="de" map={{
de: {
main: {
Hello: 'Hallo',
hello_user: (name) => `Hi, ${name}!`
}
}
}}>
<Hello name="Mike" />
</Provider>License
Unlicense — public domain.