Skip to content

Commit

Permalink
[Import]: update react import for RN >= 0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
jbesse committed Apr 6, 2017
1 parent 77a4337 commit 516fdd2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ios/BlockableWebView.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2016 Rafael Seemann. All rights reserved.
//

#import "RCTView.h"
#import <React/RCTView.h>

@class BlockableWebView;

Expand Down
14 changes: 7 additions & 7 deletions ios/BlockableWebView.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

#import <UIKit/UIKit.h>

#import "RCTAutoInsetsProtocol.h"
#import "RCTConvert.h"
#import "RCTEventDispatcher.h"
#import "RCTLog.h"
#import "RCTUtils.h"
#import "RCTView.h"
#import "UIView+React.h"
#import <React/RCTAutoInsetsProtocol.h>
#import <React/RCTConvert.h>
#import <React/RCTEventDispatcher.h>
#import <React/RCTLog.h>
#import <React/RCTUtils.h>
#import <React/RCTView.h>
#import <React/UIView+React.h>

//NSString *const RCTJSNavigationScheme = @"react-js-navigation";

Expand Down
2 changes: 1 addition & 1 deletion ios/BlockableWebViewManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2016 Facebook. All rights reserved.
//

#import "RCTViewManager.h"
#import <React/RCTViewManager.h>

@interface BlockableWebViewManager : RCTViewManager

Expand Down
6 changes: 3 additions & 3 deletions ios/BlockableWebViewManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

#import "BlockableWebViewManager.h"

#import "RCTBridge.h"
#import "RCTUIManager.h"
#import <React/RCTBridge.h>
#import <React/RCTUIManager.h>
#import "BlockableWebView.h"
#import "UIView+React.h"
#import <React/UIView+React.h>

@interface BlockableWebViewManager () <BlockableWebViewDelegate>

Expand Down

0 comments on commit 516fdd2

Please sign in to comment.