Workflow ohne Key-Dateien
Übersetze JSX und Strings, ohne Key-Dateien zu pflegen.
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>
);
}