Skip to content

Instantly share code, notes, and snippets.

@vincentriemer
Created November 26, 2018 01:15
Show Gist options
  • Save vincentriemer/1c761d9d31d85e9077cf82546ef62f5b to your computer and use it in GitHub Desktop.
Save vincentriemer/1c761d9d31d85e9077cf82546ef62f5b to your computer and use it in GitHub Desktop.
import ReactDOM from "react-dom";
export default ReactDOM.unstable_batchedUpdates;
// For RN, export a function with the same signature but doesn't do anything special
export default f => f();
// Web will resolve batchedUpdates.js and RN will resolve batchedUpdates.native.js
import batchedUpdates from "./batchedUpdates";
batchedUpdates(() => {
setState({});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment