'use strict'; import React, { AppRegistry, Component, StyleSheet, Text, View } from 'react-native'; import Config from 'react-native-config' class Example extends Component { render() { return ( FOO={Config.FOO} ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, text: { fontSize: 20, textAlign: 'center', margin: 10, }, }); AppRegistry.registerComponent('Example', () => Example);