From da43c297f4ee4db68fa88b99e6939dc4ed35691e Mon Sep 17 00:00:00 2001 From: Pieter De Baets Date: Wed, 5 Apr 2017 12:04:02 -0700 Subject: [PATCH] Update IntegrationWithExistingApps.md Summary: Closes https://github.com/facebook/react-native/pull/13327 Differential Revision: D4836472 Pulled By: javache fbshipit-source-id: 377512f8a422c40fc02a3259bccb097c38357c19 --- docs/IntegrationWithExistingApps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/IntegrationWithExistingApps.md b/docs/IntegrationWithExistingApps.md index e4fa55e7f..57d1b3b99 100644 --- a/docs/IntegrationWithExistingApps.md +++ b/docs/IntegrationWithExistingApps.md @@ -379,10 +379,10 @@ We will, for debugging purposes, log that the event handler was invoked. Then, w -First `import` the `RCTRootView` library. +First `import` the `RCTRootView` header. ``` -#import "RCTRootView.h" +#import ``` > 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.