index.js 297 B

1234567
  1. export * from './exports';
  2. import { unstable_batchedUpdates as batch } from './utils/reactBatchedUpdates';
  3. import { setBatch } from './utils/batch'; // Enable batched updates in our subscriptions for use
  4. // with standard React renderers (ReactDOM, React Native)
  5. setBatch(batch);
  6. export { batch };