From 5eff01d2c5941b93a5e0935a8f0f441fd96cbc1b Mon Sep 17 00:00:00 2001 From: Gabriel METZGER Date: Mon, 18 Jul 2016 18:27:43 +0200 Subject: [PATCH] Update IntegrationWithExistingApps.md --- docs/IntegrationWithExistingApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/IntegrationWithExistingApps.md b/docs/IntegrationWithExistingApps.md index 05d95838e41d..2d85e89c27b2 100644 --- a/docs/IntegrationWithExistingApps.md +++ b/docs/IntegrationWithExistingApps.md @@ -347,7 +347,7 @@ AppRegistry.registerComponent('RNHighScores', () => RNHighScores); ## The Magic: `RCTRootView` -Now that your React Native component is created via `index.ios.js`, you need to add that component to a new or existing `ViewController`. The easiest path is to take is to optionally create an event path to your component and then add that component to an existing `ViewController`. +Now that your React Native component is created via `index.ios.js`, you need to add that component to a new or existing `ViewController`. The easiest path to take is to optionally create an event path to your component and then add that component to an existing `ViewController`. We will tie our React Native component with a new native view in the `ViewController` that will actually host it called `RCTRootView` .