/** * Created by greg on 2016-06-27. */ import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Navigator, Text, View } from 'react-native'; class Index extends Component { render() { return ( Index ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, }, instructions: { textAlign: 'center', color: '#333333', marginBottom: 5, }, }); module.exports = Index; export default Index;