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 lines
684 B
12 lines
684 B
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 { getBatch } from './utils/batch';
|
|
import shallowEqual from './utils/shallowEqual'; // For other renderers besides ReactDOM and React Native, use the default noop batch function
|
|
|
|
var batch = getBatch();
|
|
export { Provider, connectAdvanced, ReactReduxContext, connect, batch, useDispatch, useSelector, useStore, shallowEqual }; |