Last active
May 22, 2018 23:59
-
-
Save zaguiini/14505ec1b9b845bbdc26141a506fd814 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 i18n from 'i18n-js' | |
| import en from './locales/en' | |
| import es from './locales/es' | |
| import pt from './locales/pt' | |
| i18n.translations = { | |
| en, | |
| es, | |
| pt, | |
| } | |
| i18n.fallbacks = true | |
| export default i18n.t | |
| export * from './locales/keys' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment