mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-10 22:48:09 +08:00
19 lines
287 B
Objective-C
19 lines
287 B
Objective-C
#import "RNFirebase.h"
|
|
|
|
@implementation RNFirebase
|
|
RCT_EXPORT_MODULE(RNFirebase);
|
|
|
|
- (id)init {
|
|
self = [super init];
|
|
if (self != nil) {
|
|
NSLog(@"Setting up RNFirebase instance");
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSArray<NSString *> *)supportedEvents {
|
|
return @[];
|
|
}
|
|
|
|
@end
|