2017-04-08 05:07:10 +08:00
|
|
|
/**
|
2017-09-25 04:48:13 +08:00
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
2017-04-08 05:07:10 +08:00
|
|
|
*
|
2017-09-25 04:48:13 +08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-04-08 05:07:10 +08:00
|
|
|
*/
|
|
|
|
|
|
2017-11-03 03:50:03 +08:00
|
|
|
import React from 'react';
|
2017-04-08 05:07:10 +08:00
|
|
|
|
2017-12-01 08:03:27 +08:00
|
|
|
const ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
2017-04-08 05:07:10 +08:00
|
|
|
|
2017-11-03 03:50:03 +08:00
|
|
|
export const ReactCurrentOwner = ReactInternals.ReactCurrentOwner;
|
|
|
|
|
export const ReactDebugCurrentFrame = __DEV__
|
|
|
|
|
? ReactInternals.ReactDebugCurrentFrame
|
|
|
|
|
: null;
|