1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import <UIKit/UIKit.h> 4 5 #import <React/RCTBridge.h> 6 #import <React/RCTRootView.h> 7 8 NS_ASSUME_NONNULL_BEGIN 9 10 @interface RCTRootView (Private) 11 12 - (void)bundleFinishedLoading:(RCTBridge *)bridge; 13 14 @end 15 16 @interface DevMenuRootView : RCTRootView 17 18 - (void)javaScriptDidLoad:(NSNotification *)notification; 19 20 @end 21 22 NS_ASSUME_NONNULL_END 23