UNPKG
qobuz-ui
Version:
latest (1.0.0)
1.0.0
Interface react pour application web et desktop
qobuz-ui
/
app
/
reducers
/
index.js
11 lines
(8 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ combineReducers }
from
'redux'
;
import
{ routerReducer
as
routing }
from
'react-router-redux'
;
import
counter
from
'./counter'
;
const
rootReducer =
combineReducers
({ counter, routing });
export
default
rootReducer;