Last active
January 30, 2019 15:58
-
-
Save isacjunior/c781503d505c8e6f2440c23d03bc948b 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 React, { Component } from 'react' | |
import { Text, View } from 'react-native' | |
import styles from './styles' | |
import { translate } from './locales' | |
class App extends Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<Text>i18N</Text> | |
<Text>{translate('hello')}</Text> | |
</View> | |
) | |
} | |
} | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment