Skip to content

Instantly share code, notes, and snippets.

@FreddyPoly
Created July 5, 2019 09:52
Show Gist options
  • Save FreddyPoly/85c18aab8a1ac8f1ea5f15762375fe1a to your computer and use it in GitHub Desktop.
Save FreddyPoly/85c18aab8a1ac8f1ea5f15762375fe1a to your computer and use it in GitHub Desktop.
[REACT NATIVE] Env Var Usage Example
import * as React from "react"
import { View, Text } from "react-native"
import * as env from "../../environment-variables"
export class ComponentTest extends React.Component<{}, {}> {
render() {
return (
<View>
<Text>
{ env.ENV_VAR_TEST }
</Text>
</View>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment