Renaming React Native Example App
So I am trying to work from this example App: https://github.com/aksonov/react-native-router-flux/tree/master/Example But when I rename the following lines: index.ios.js import App
Solution 1:
- Change the name attribute in
package.json
- run react-native upgrade
- change your Appregistry
AppRegistry.registerComponent('MyApp', () => MyApp);
Post a Comment for "Renaming React Native Example App"