mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
dd2a9af69b
Summary: Prepares for production experimentation of a reimplementation of the `Text` component that uses `Pressability` and React Hooks. After I validate the new experimental implementation of `Text`, I will revert these changes and replace `Text.js` with the new implementation. Changelog: [Internal] Reviewed By: nadiia, kacieb Differential Revision: D24490569 fbshipit-source-id: 1ee4af72fcbda1b1d283a81c6bdf3fe67aa17e73
18 lines
315 B
JavaScript
18 lines
315 B
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import typeof Text from './Text';
|
|
|
|
export default {
|
|
unstable_Text: (null: ?Text),
|
|
};
|