Zero-key workflow
Translate JSX and strings without maintaining key files.
Welcome.tsx
import { T, useTranslation } from 'tyndale-react';
export function Welcome() {
const t = useTranslation();
return (
<div>
<T>Welcome to our app!</T>
<p>{t('You have 3 new messages')}</p>
</div>
);
}