mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e802bd0ea9
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
26 lines
883 B
JavaScript
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),
|
|
};
|