Files
react-native/Libraries/Components/Touchable/TouchableInjection.js
T
Tim Yung e802bd0ea9 RN: Prepare More Touchable Experiments
Summary:
Expands `TouchableWithoutFeedbackInjection` as `TouchableInjection` for use in testing out new implementations of all five `Touchable.Mixin` components.

Changelog:
[Internal]

Reviewed By: TheSavior

Differential Revision: D18278876

fbshipit-source-id: d511bdecefe38579f03a9d5ad52011f7cd71f4c0
2019-11-02 16:56:09 -07:00

26 lines
883 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 TouchableBounce from './TouchableBounce';
import typeof TouchableHighlight from './TouchableHighlight';
import typeof TouchableNativeFeedback from './TouchableNativeFeedback';
import typeof TouchableOpacity from './TouchableOpacity';
import typeof TouchableWithoutFeedback from './TouchableWithoutFeedback';
export default {
unstable_TouchableBounce: (null: ?TouchableBounce),
unstable_TouchableHighlight: (null: ?TouchableHighlight),
unstable_TouchableNativeFeedback: (null: ?TouchableNativeFeedback),
unstable_TouchableOpacity: (null: ?TouchableOpacity),
unstable_TouchableWithoutFeedback: (null: ?TouchableWithoutFeedback),
};