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
|
|
11
|
var batch = getBatch();
|
12
|
export { Provider, connectAdvanced, ReactReduxContext, connect, batch, useDispatch, useSelector, useStore, shallowEqual };
|