You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 rivejä
684 B

  1. import Provider from './components/Provider';
  2. import connectAdvanced from './components/connectAdvanced';
  3. import { ReactReduxContext } from './components/Context';
  4. import connect from './connect/connect';
  5. import { useDispatch } from './hooks/useDispatch';
  6. import { useSelector } from './hooks/useSelector';
  7. import { useStore } from './hooks/useStore';
  8. import { getBatch } from './utils/batch';
  9. import shallowEqual from './utils/shallowEqual'; // For other renderers besides ReactDOM and React Native, use the default noop batch function
  10. var batch = getBatch();
  11. export { Provider, connectAdvanced, ReactReduxContext, connect, batch, useDispatch, useSelector, useStore, shallowEqual };