12 lines
662 B
JavaScript
12 lines
662 B
JavaScript
import Provider from './components/Provider';
|
|
import connectAdvanced from './components/connectAdvanced';
|
|
import { ReactReduxContext } from './components/Context';
|
|
import connect from './connect/connect';
|
|
import { useDispatch } from './hooks/useDispatch';
|
|
import { useSelector } from './hooks/useSelector';
|
|
import { useStore } from './hooks/useStore';
|
|
import { setBatch } from './utils/batch';
|
|
import { unstable_batchedUpdates as batch } from './utils/reactBatchedUpdates';
|
|
import shallowEqual from './utils/shallowEqual';
|
|
setBatch(batch);
|
|
export { Provider, connectAdvanced, ReactReduxContext, connect, batch, useDispatch, useSelector, useStore, shallowEqual }; |