fluorine-lib
Version:
Reactive state and side effect management for React using a single stream of actions
22 lines (20 loc) • 605 B
JavaScript
import createDispatcher from './createDispatcher'
import connectStore from './decorators/connectStore'
import connectActions from './decorators/connectActions'
import withStore from './decorators/withStore'
import withActions from './decorators/withActions'
import wrapActions from './util/wrapActions'
import Provider from './components/Provider'
import combineReducers from './combineReducers'
import distinctSelector from './distinctSelector'
export {
createDispatcher,
withActions,
withStore,
connectStore,
connectActions,
wrapActions,
Provider,
distinctSelector,
combineReducers
}