Internationalization for the AI Era
import { g } from '@/gringow/gringow-react';
export function Welcome() {
return (
<div>
<h1>{g`Welcome to Gringow!`}</h1>
<p>{g`AI-powered i18n that keeps it simple`}</p>
</div>
);
}Works with Your Stack
Drop-in integration for all major frameworks
import { g } from 'gringow-react';
export default function App() {
return (
<div>
<h1>{g('Welcome to our app')}</h1>
<p>{g('Start building amazing multilingual apps')}</p>
</div>
);
}