changeset 0 | 5f4fcbc80b37 |
-1:000000000000 | 0:5f4fcbc80b37 |
---|---|
1 import { combineReducers } from 'redux'; |
|
2 |
|
3 import annotations from './annotations'; |
|
4 import terms from './terms'; |
|
5 import documents from './documents'; |
|
6 |
|
7 const rootReducer = combineReducers({ |
|
8 annotations, |
|
9 terms, |
|
10 documents, |
|
11 }); |
|
12 |
|
13 export default rootReducer; |