const React = require("react-native"); const { AppRegistry, StyleSheet, Text, View, ScrollView, } = React; const HelloGL = require("./HelloGL"); const Sepia = require("./Sepia"); const Simple = React.createClass({ render: function() { return Welcome to GL React Native! 1. Hello GL 2. Sepia on an Image ; } }); const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#fff", }, title: { fontSize: 20, textAlign: "center", margin: 5, marginBottom: 20, fontWeight: "bold" }, demos: { flex: 1, justifyContent: "center", alignItems: "center", }, demoTitle: { fontSize: 20, margin: 5, fontStyle: "italic" }, }); AppRegistry.registerComponent("Simple", () => Simple);