Define ICU messages in a JSON file:
{"WelcomeMessage": "Hi there, {name}. Welcome to {place}.","Notification": "You have {count, plural, one {a notification} other {# notifications}}","Copyright": "© {date, date} {organization}"}
Run the nymus
CLI to generate components:
nymus --locale en ./en/strings.json
Import the components in your project:
import { WelcomeMessage } from './en/strings';
Use the generated component:
<WelcomeMessage name="Johnny" place="the nymus docs" />
Take alook at the examples to get an idea of how a complete setup would work