@@ -32,8 +32,6 @@ import ReactVersion from 'shared/ReactVersion';
32
32
// Module provided by RN:
33
33
import { UIManager } from 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface' ;
34
34
35
- import NativeMethodsMixin from './NativeMethodsMixin' ;
36
- import ReactNativeComponent from './ReactNativeComponent' ;
37
35
import { getClosestInstanceFromNode } from './ReactFabricComponentTree' ;
38
36
import { getInspectorDataForViewTag } from './ReactNativeFiberInspector' ;
39
37
@@ -155,8 +153,6 @@ setBatchingImplementation(
155
153
const roots = new Map ( ) ;
156
154
157
155
const ReactFabric : ReactFabricType = {
158
- NativeComponent : ReactNativeComponent ( findNodeHandle , findHostInstance ) ,
159
-
160
156
// This is needed for implementation details of TouchableNativeFeedback
161
157
// Remove this once TouchableNativeFeedback doesn't use cloneElement
162
158
findHostInstance_DEPRECATED,
@@ -223,10 +219,7 @@ const ReactFabric: ReactFabricType = {
223
219
return createPortal ( children , containerTag , null , key ) ;
224
220
} ,
225
221
226
- __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: {
227
- // Used as a mixin in many createClass-based components
228
- NativeMethodsMixin : NativeMethodsMixin ( findNodeHandle , findHostInstance ) ,
229
- } ,
222
+ __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: { } ,
230
223
} ;
231
224
232
225
injectIntoDevTools ( {
0 commit comments