/** * Copyright 2004-present Facebook. All Rights Reserved. * * @providesModule UIExplorerApp */ 'use strict'; var React = require('react-native/addons'); var UIExplorerList = require('./UIExplorerList'); var { AppRegistry, NavigatorIOS, StyleSheet, } = React; var UIExplorerApp = React.createClass({ render: function() { return ( ); } }); var styles = StyleSheet.create({ container: { flex: 1, }, itemWrapper: { backgroundColor: '#eaeaea', }, }); AppRegistry.registerComponent('UIExplorerApp', () => UIExplorerApp); module.exports = UIExplorerApp;