Automatic i18n for React.
npm install gt-react
npm install gtx-cli --save-devnpx gtx-cli 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.