diff --git a/releases/next/docs/integration-with-existing-apps.html b/releases/next/docs/integration-with-existing-apps.html index f4487bc9d35..6e1c9908681 100644 --- a/releases/next/docs/integration-with-existing-apps.html +++ b/releases/next/docs/integration-with-existing-apps.html @@ -46,7 +46,7 @@ block { display: none; }
Assume the app for integration is a 2048 game. Here is what the main menu of the native application looks like without React Native.

React Native integration requires both the React and React Native node modules. The React Native Framework will provide the code to allow your application integration to happen.
package.json #We will add the package dependencies to a package.json file. Create this file in the root of your project if it does not exist.
Normally with React Native projects, you will put files like
package.json,index.ios.js, etc. in the root directory of your project and then have your iOS specific native code in a subdirectory likeios/where your Xcode project is located (e.g.,.xcodeproj).
Below is an example of what your package.json file should minimally contain.
Version numbers will vary according to your needs. Normally the latest versions for both React and React Native will be sufficient.

React Native integration requires both the React and React Native node modules. The React Native Framework will provide the code to allow your application integration to happen.
package.json #We will add the package dependencies to a package.json file. Create this file in the root of your project if it does not exist.
Normally with React Native projects, you will put files like
package.json,index.ios.js, etc. in the root directory of your project and then have your iOS specific native code in a subdirectory likeios/where your Xcode project is located (e.g.,.xcodeproj).
Below is an example of what your package.json file should minimally contain.
Version numbers will vary according to your needs. Normally the latest versions for both React and React Native will be sufficient.