Tweak some concluding EmbeddedApp language

This commit is contained in:
Andrew Sardone 2015-03-31 17:24:26 -04:00
parent 3a6e4305ca
commit 1c3dd29c92
1 changed files with 2 additions and 2 deletions

View File

@ -156,6 +156,6 @@ Live reload works from the simulator, too! Youve got a simple React component
## Conclusion
So under the hood, when `RCTRootView` is initialized, it will try to download, parse and run the bundle file from React Native development server. All you need to do is to implement your own container view, add `RCTRootView` as its subclass. And then serve the bundle using React Native development server. Then, bravo!
So under the hood, when `RCTRootView` is initialized, it will try to download, parse and run the bundle file from React Native development server. This means all you need to do is to implement your own container view or view controller for the `RCTRootView` the `RCTRootView` ingests your bundled JS and renders your React components. Bravo!
You can checkout full source code of sample application [here](https://github.com/tjwudi/EmbededReactNativeExample).
You can checkout full source code of a sample application [here](https://github.com/tjwudi/EmbededReactNativeExample).