Skip to content

Commit

Permalink
Fix build for RN 0.48 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
samratshekhar authored and albanqoku committed Nov 13, 2017
1 parent 123c3de commit cdc99dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion RNCalendarEvents.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#import <React/RCTBridgeModule.h>
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
#import <React/RCTEventDispatcher.h>

@interface RNCalendarEvents : NSObject <RCTBridgeModule>
Expand Down

0 comments on commit cdc99dd

Please sign in to comment.