Files
react-native/React/Base/RCTVersion.h
T
Kevin Gozali 020c11cc7b iOS Buck: Create CoreModules sub-target
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
2019-07-01 15:20:01 -07:00

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);