Fix missing RCTBridgeModule.h

Summary:
`<React/RCTBridgeModule.h>`

**motivation**

iOS native headers moved in RN v0.40.0.
link: https://github.com/facebook/react-native/releases/tag/v0.40.0

So, fixed import path in `Libraries/Sample/Sample.h`.

**Test plan (required)**

- [x] Make sure tests pass on both Travis and Circle CI.

Related p-r
https://github.com/facebook/react-native/pull/11576
Closes https://github.com/facebook/react-native/pull/12127

Differential Revision: D4488979

Pulled By: mkonicek

fbshipit-source-id: 75bffb542827d20d53062c54f06aaee0a76398bf
This commit is contained in:
yyoshiki41 2017-01-31 11:13:21 -08:00 committed by Facebook Github Bot
parent 33fdce9088
commit 914848759a
1 changed files with 1 additions and 1 deletions

View File

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