2020-04-25 15:09:08 +02:00
|
|
|
/**
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTBridgeDelegate.h>
|
2020-04-30 18:13:39 +02:00
|
|
|
#import <UserNotifications/UNUserNotificationCenter.h>
|
2020-04-25 15:09:08 +02:00
|
|
|
|
2020-04-30 18:13:39 +02:00
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate, UNUserNotificationCenterDelegate>
|
2020-04-25 15:09:08 +02:00
|
|
|
|
|
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
|
|
|
|
|
|
@end
|