mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
351 B
Objective-C
15 lines
351 B
Objective-C
#import <RCTAppDelegate.h>
|
|
#import <UIKit/UIKit.h>
|
|
#if __has_include(<RCTGetuiModule/RCTGetuiModule.h>)
|
|
#import <RCTGetuiModule/RCTGetuiModule.h>
|
|
#elif __has_include("RCTGetuiModule.h")
|
|
#import "RCTGetuiModule.h"
|
|
#elif __has_include(<GtSdkRN/RCTGetuiModule.h>)
|
|
#import <GtSdkRN/RCTGetuiModule.h>
|
|
#endif
|
|
|
|
|
|
@interface AppDelegate : RCTAppDelegate
|
|
|
|
@end
|