Skip to content

Commit a692910

Browse files
Eduardo Campañarolandszoke
authored andcommitted
refactor(platform): change exports so parcel and rollup can solve them
1 parent d8c8dbe commit a692910

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/platforms/dom.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
export * from 'react-dom';
1+
// eslint-disable-next-line camelcase
2+
export { unstable_batchedUpdates } from 'react-dom';

src/platforms/native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
export * from 'react-native';
1+
// eslint-disable-next-line camelcase
2+
export { unstable_batchedUpdates } from 'react-native';

0 commit comments

Comments
 (0)