Use RCTBridgeModule.h instead of RCTBridge.h (#109)

Looks like `RCTBridge.h` got deprecated and official docs use `#import <React/RCTBridge.h>` form anyway. This also makes this lib usable under (at least) RN 0.48
This commit is contained in:
Michał Pierzchała 2017-10-15 23:19:46 +02:00 committed by Florian Rival
parent 8e6b1fdbbb
commit 6fd88e7666
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#import <React/RCTBridge.h>
#import <React/RCTBridgeModule.h>
@interface ImageResizer : NSObject <RCTBridgeModule>