Skip to content

Commit

Permalink
Fix RNGestureHandlerManager to use explicit imports (#1160)
Browse files Browse the repository at this point in the history
* change imports

* change imports
  • Loading branch information
PeteTheHeat authored Sep 1, 2020
1 parent 1d23e20 commit e64d6fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ios/RNGestureHandlerManager.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#import <Foundation/Foundation.h>

#import <React/RCTBridgeModule.h>
#import <React/RCTUIManager.h>

@class RCTUIManager;
@class RCTEventDispatcher;

@interface RNGestureHandlerManager : NSObject

Expand Down
2 changes: 2 additions & 0 deletions ios/RNGestureHandlerManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#import <React/RCTRootView.h>
#import <React/RCTTouchHandler.h>
#import <React/RCTRootContentView.h>
#import <React/RCTUIManager.h>
#import <React/RCTEventDispatcher.h>

#import "RNGestureHandlerState.h"
#import "RNGestureHandler.h"
Expand Down

0 comments on commit e64d6fc

Please sign in to comment.