UNPKG
dm-web-react
Version:
latest (1.0.3)
1.0.3
The DM web client with React.
dm-web-react
/
src
/
common
/
createRootReducer.ts
10 lines
(8 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ combineReducers }
from
"redux-immutable"
;
import
reducer
from
"../store/reducer"
;
export
default
function
createRootReducer
(
asyncReducers: any
) {
return
combineReducers
({
app
: reducer, ...asyncReducers, }); }