'use strict'; var React = require('react'); var ReactNative = require('react-native'); var { AppRegistry, StyleSheet, Text, View } = ReactNative; var SideMenu = React.createClass({ render: function() { return ( SideMenu Screen ); }, }); var 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, }, button: { textAlign: 'center', fontSize: 18, marginBottom: 10, marginTop:10, }, }); AppRegistry.registerComponent('SideMenu', () => SideMenu); module.exports = SideMenu;