Sha256: d5d0c43bc256cc489bea56660f13253bba15bfe205cff016dddef13e4d14371b
Contents?: true
Size: 273 Bytes
Versions: 2
Compression:
Stored size: 273 Bytes
Contents
import { createStore, applyMiddleware } from 'redux'; import thunk from 'redux-thunk'; import Reducer from '../reducers/Index'; const createStoreWithMiddleware = applyMiddleware(thunk)(createStore); const store = createStoreWithMiddleware(Reducer); export default store;
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
denshobato_chat_panel-0.0.2 | lib/react/store/Store.jsx |
denshobato_chat_panel-0.0.1 | lib/react/store/Store.jsx |