Update IntegrationWithExistingApps.md

Summary: Closes https://github.com/facebook/react-native/pull/13327

Differential Revision: D4836472

Pulled By: javache

fbshipit-source-id: 377512f8a422c40fc02a3259bccb097c38357c19
This commit is contained in:
Pieter De Baets 2017-04-05 12:04:02 -07:00 committed by Facebook Github Bot
parent 269458c613
commit da43c297f4

View File

@ -379,10 +379,10 @@ We will, for debugging purposes, log that the event handler was invoked. Then, w
<block class="objc" />
First `import` the `RCTRootView` library.
First `import` the `RCTRootView` header.
```
#import "RCTRootView.h"
#import <React/RCTRootView.h>
```
> The `initialProperties` are here for illustration purposes so we have some data for our high score screen. In our React Native component, we will use `this.props` to get access to that data.