react-native/Examples/UIExplorer/UIExplorerApp.js

47 lines
834 B
JavaScript
Raw Normal View History

2015-01-30 01:10:49 +00:00
/**
* Copyright 2004-present Facebook. All Rights Reserved.
*
* @providesModule UIExplorerApp
*/
'use strict';
var React = require('react-native/addons');
var UIExplorerList = require('./UIExplorerList');
var {
AppRegistry,
2015-01-30 01:10:49 +00:00
NavigatorIOS,
StyleSheet,
} = React;
var UIExplorerApp = React.createClass({
2015-01-30 01:10:49 +00:00
render: function() {
return (
<NavigatorIOS
style={styles.container}
initialRoute={{
title: 'UIExplorer',
component: UIExplorerList,
}}
itemWrapperStyle={styles.itemWrapper}
tintColor='#008888'
/>
2015-01-30 01:10:49 +00:00
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
},
itemWrapper: {
backgroundColor: '#eaeaea',
},
});
AppRegistry.registerComponent('UIExplorerApp', () => UIExplorerApp);
2015-01-30 01:10:49 +00:00
module.exports = UIExplorerApp;