application-amicale/ios/Campus/AppDelegate.h

19 lines
547 B
C
Raw Normal View History

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 <UMReactNativeAdapter/UMModuleRegistryAdapter.h>
#import <React/RCTBridgeDelegate.h>
#import <UMCore/UMAppDelegateWrapper.h>
2020-04-25 22:59:53 +02:00
@interface AppDelegate : UMAppDelegateWrapper <RCTBridgeDelegate>
2020-04-25 15:09:08 +02:00
@property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter;
@property (nonatomic, strong) UIWindow *window;
@end