I have a working application that responds to native. IOS project files are created based on the native response, which is based on Objective-C. It was harder for me to convert Objective-C to Swift. So I decided to make a simple project in swift 3, and then integrate React Native into it. I followed the instructions here: http://facebook.imtqy.com/react-native/docs/integration-with-existing-apps.html
I took the first steps, but when it comes to:
Magic: RCTRootView Now that your React Native component is created using index.ios.js, you need to add this component to a new or existing ViewController. The easiest way is to optionally create a path to your component, and then add this component to an existing ViewController.
We will associate our React Native component with a new native view in the ViewController, which will actually host it under the name RCTRootView.
There is no example or proper explanation. 

Are there any ready-made templates or any complete tutorial on how to integrate responsive to your native project with fast 3?
UPDATE:
According to this guide: https://gist.github.com/boopathi/27d21956fefcb5b168fe
I updated my project to look like this: AppDelegate.swift:
import UIKit import CoreData @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
ViewController.swift:
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad()
The title of the project-name-bridge:
#ifndef OpenCampus_Briding_Header_h #define OpenCampus_Briding_Header_h #endif /* OpenCampus_Briding_Header_h */ find ../../../node_modules/react-native/React -name "*.h" | awk -F'/' '{print "#import \""$NF"\""}'
and this is the result: 