2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
|
|
|
* @providesModule MoviesApp
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-03-23 17:06:16 +00:00
|
|
|
var React = require('react-native');
|
2015-01-30 01:10:49 +00:00
|
|
|
var {
|
2015-02-19 14:57:05 +00:00
|
|
|
AppRegistry,
|
2015-01-30 01:10:49 +00:00
|
|
|
NavigatorIOS,
|
|
|
|
StyleSheet,
|
|
|
|
} = React;
|
|
|
|
|
|
|
|
var SearchScreen = require('./SearchScreen');
|
|
|
|
|
|
|
|
var MoviesApp = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<NavigatorIOS
|
|
|
|
style={styles.container}
|
|
|
|
initialRoute={{
|
|
|
|
title: 'Movies',
|
|
|
|
component: SearchScreen,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
backgroundColor: 'white',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-02-19 14:57:05 +00:00
|
|
|
AppRegistry.registerComponent('MoviesApp', () => MoviesApp);
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
module.exports = MoviesApp;
|