UNPKG

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