Updates from Feb 19

- [Catalyst] Clean up bundling/runApp to match OSS | Spencer Ahrens
- [react-native][pull request] Add root to packager via cli | Boopathi Rajaa | Amjad Masad
This commit is contained in:
Spencer Ahrens
2015-02-19 06:57:05 -08:00
parent 8f68996ccd
commit 3abf4fb6ae
10 changed files with 132 additions and 121 deletions

View File

@@ -9,7 +9,7 @@ var React = require('react-native/addons');
var UIExplorerList = require('./UIExplorerList');
var {
Bundler,
AppRegistry,
NavigatorIOS,
StyleSheet,
} = React;
@@ -39,6 +39,6 @@ var styles = StyleSheet.create({
},
});
Bundler.registerComponent('UIExplorerApp', () => UIExplorerApp);
AppRegistry.registerComponent('UIExplorerApp', () => UIExplorerApp);
module.exports = UIExplorerApp;