Created
November 14, 2019 13:23
-
-
Save theodesp/4f93382f5f1b56e24d001157aeb860cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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