Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Last active January 30, 2019 15:58
Show Gist options
  • Save isacjunior/c781503d505c8e6f2440c23d03bc948b to your computer and use it in GitHub Desktop.
Save isacjunior/c781503d505c8e6f2440c23d03bc948b to your computer and use it in GitHub Desktop.
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