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
19 lines
495 B
Objective-C
19 lines
495 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/RCTDefines.h>
|
|
|
|
RCT_EXTERN NSString* const RCTVersionMajor;
|
|
RCT_EXTERN NSString* const RCTVersionMinor;
|
|
RCT_EXTERN NSString* const RCTVersionPatch;
|
|
RCT_EXTERN NSString* const RCTVersionPrerelease;
|
|
|
|
RCT_EXTERN NSDictionary* RCTGetReactNativeVersion(void);
|