mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
020c11cc7b
Summary: Right now the entire RN core code lives inside one giant internal Buck target. This makes it hard to refactor the infra and to roll out TurboModules. For now, create a baseline for how RN core dir can be structured. Reviewed By: PeteTheHeat Differential Revision: D16001260 fbshipit-source-id: bba947e2fb75576a2e1f3f4c816575f1157dcb03
15 lines
318 B
Objective-C
15 lines
318 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
@interface RCTPlatform : NSObject <RCTBridgeModule>
|
|
|
|
@end
|