Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/streamich/use-t

🗺 Translations with React hooks
https://github.com/streamich/use-t

Last synced: 2 months ago
JSON representation

🗺 Translations with React hooks

Lists

README

        







🗺


use-t


Translations for React.








Installation



npm i use-t




Reference

```js
import {Provider, useT, withT, Trans, Consumer, context} from 'use-t';
```

- [``](./docs/Provider.md)
- [`useT()`](./docs/useT.md)
- [`withT()`](./docs/withT.md)
- [``](./docs/Trans.md)
- [``](./docs/Consumer.md)
- [`context`](./docs/context.md)
- [`createTranslations()`](./docs/createTranslations.md)




Example

```jsx
import {Provider, useT} from 'use-t';

const Hello = (props) => {
const [t] = useT();
return (



{t('Hello')}, {props.name}!


{t.t('hello_user')`Hello, ${props.name}!`}


);
};

`Hi, ${name}!`
}
}
}}>

```




License


Unlicense — public domain.