Skip to content

Instantly share code, notes, and snippets.

@theodesp
Created November 14, 2019 13:23
Show Gist options
  • Save theodesp/4f93382f5f1b56e24d001157aeb860cf to your computer and use it in GitHub Desktop.
Save theodesp/4f93382f5f1b56e24d001157aeb860cf to your computer and use it in GitHub Desktop.
import intl from 'react-intl-universal';
intl.get('home.declarative'); // Simple text message
intl.getHtml('home.declarative.p1') // HTML message
intl.get('not-exist-key').defaultMessage('Μύνημα που δεν υπάρχει') // Default message
intl.get('home.welcome', {name:'React.js'}) // Message with variables.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment