# `withT` React higher order component that injects `t` translation function and [`T` state of the ``](./Provider.md#state) into the props of your component. ```jsx const Demo = ({t, T}) => { return (
{t('Hello')}, user! {t('welcome')}
); }; export default withT(Demo); ```