1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 #import <React/RCTBridgeDelegate.h>
4 #if __has_include(<React-RCTAppDelegate/RCTAppDelegate.h>)
5 #import <React-RCTAppDelegate/RCTAppDelegate.h>
6 #elif __has_include(<React_RCTAppDelegate/RCTAppDelegate.h>)
7 // for importing the header from framework, the dash will be transformed to underscore
8 #import <React_RCTAppDelegate/RCTAppDelegate.h>
9 #endif
10 
11 @interface DevClientAppDelegate : RCTAppDelegate
12 
13 - (RCTBridge *)createBridgeAndSetAdapterWithLaunchOptions:(NSDictionary *_Nullable)launchOptions;
14 
15 @end
16