Skip to content

Commit

Permalink
Merge pull request #60 from danieldkim/master
Browse files Browse the repository at this point in the history
fix for breaking iOS header change in RN 0.40.0
  • Loading branch information
yonahforst committed Feb 3, 2017
2 parents a042e09 + 53cc34c commit c11205e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Example/ios/Example/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

#import "AppDelegate.h"

#import "RCTBundleURLProvider.h"
#import "RCTRootView.h"
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>

@implementation AppDelegate

Expand Down
4 changes: 2 additions & 2 deletions Example/ios/ExampleTests/ExampleTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>

#import "RCTLog.h"
#import "RCTRootView.h"
#import <React/RCTLog.h>
#import <React/RCTRootView.h>

#define TIMEOUT_SECONDS 600
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
Expand Down

0 comments on commit c11205e

Please sign in to comment.