diff --git a/src/components/touchables/Touchables.android.tsx b/src/components/touchables/Touchables.tsx similarity index 100% rename from src/components/touchables/Touchables.android.tsx rename to src/components/touchables/Touchables.tsx diff --git a/src/components/touchables/index.ts b/src/components/touchables/index.ts index 61d5c969e..3a440747a 100644 --- a/src/components/touchables/index.ts +++ b/src/components/touchables/index.ts @@ -12,8 +12,8 @@ import { } from './Touchables'; export default { - TouchableOpacity: TouchableOpacity as typeof RNTouchableOpacity, - TouchableHighlight: TouchableHighlight as typeof RNTouchableHighlight, + TouchableOpacity: TouchableOpacity as any as typeof RNTouchableOpacity, + TouchableHighlight: TouchableHighlight as any as typeof RNTouchableHighlight, TouchableWithoutFeedback: - TouchableWithoutFeedback as typeof RNTouchableWithoutFeedback, + TouchableWithoutFeedback as any as typeof RNTouchableWithoutFeedback, };