Remove ReactDOM.native shim

This is causing build errors.

This should be in the downstream repo if anything.

Relay has its own shim that should be preferred.
This commit is contained in:
Sebastian Markbage
2016-04-19 01:34:02 +01:00
parent 744548ad14
commit ada60c4fd8
-16
View File
@@ -1,16 +0,0 @@
/**
* @providesModule ReactDOM
*/
'use strict';
var ReactUpdates = require('./ReactUpdates');
// TODO: In React Native, ReactTestUtils depends on ./ReactDOM (for
// renderIntoDocument, which should never be called) and Relay depends on
// react-dom (for batching). Once those are fixed, nothing in RN should import
// this module and this file can go away.
module.exports = {
unstable_batchedUpdates: ReactUpdates.batchedUpdates,
};