Automatic i18n for React.
npm install gt-react
npm install gt --save-devnpx gt initimport { T, GTProvider } from 'gt-react';
export default function App() {
return (
<GTProvider>
<T>
<p>This gets translated automatically.</p>
</T>
</GTProvider>
);
}See the full documentation for guides and API reference.