mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
72890965f3
Summary: Creates `TouchableWithoutFeedback.unstable_Experiment` for use to experiment with alternate implementations. Changelog: [Internal] Reviewed By: TheSavior Differential Revision: D18027430 fbshipit-source-id: 74b90da3398618dced2279cdbad8e05dafdc1919
19 lines
394 B
JavaScript
19 lines
394 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 type {Props} from './TouchableWithoutFeedback';
|
|
import * as React from 'react';
|
|
|
|
export default {
|
|
unstable_Override: (null: ?React.ComponentType<Props>),
|
|
};
|