#import "RNNReactRootViewCreator.h" #import "RNN.h" #import @implementation RNNReactRootViewCreator - (UIView*)createRootView:(NSString*)name rootViewId:(NSString*)rootViewId{ if (!rootViewId) { @throw [NSException exceptionWithName:@"MissingViewId" reason:@"Missing view id" userInfo:nil]; } UIView *view = [[RCTRootView alloc] initWithBridge:[RNN instance].bridge moduleName:name initialProperties:@{@"id": rootViewId}]; return view; } @end