Skip to content

Instantly share code, notes, and snippets.

@FreddyPoly
Created July 1, 2019 09:35
Show Gist options
  • Save FreddyPoly/3103df5b5ff7489d8593bfdca9d8b52a to your computer and use it in GitHub Desktop.
Save FreddyPoly/3103df5b5ff7489d8593bfdca9d8b52a to your computer and use it in GitHub Desktop.
[REACT NATIVE] i18n Usage Component Example
import * as React from "react"
import { View, Text } from "react-native"
import { translate } from "../../i18n/"
export class FirstExampleScreen extends React.Component<{}, {}>
render() {
return (
<View>
// JSX...
<Text>
Cancel = { translate('common.cancel') }
</Text>
</View>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment