alternate-renderers.js 209 B

123456789
  1. export * from './exports'
  2. import { getBatch } from './utils/batch'
  3. // For other renderers besides ReactDOM and React Native,
  4. // use the default noop batch function
  5. const batch = getBatch()
  6. export { batch }