UNPKG
@fctv/js
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
Call SDK for JavaScript
@fctv/js
/
examples
/
react-app
/
src
/
store.js
8 lines
(5 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ createStore, applyMiddleware }
from
'redux'
;
import
thunk
from
'redux-thunk'
;
import
rootReducer
from
'./reducer'
const
store =
createStore
(rootReducer,
applyMiddleware
(thunk));
export
default
store;