mirror of
https://github.com/docker/awesome-compose.git
synced 2025-12-29 18:28:29 +01:00
11 lines
245 B
JavaScript
Executable File
11 lines
245 B
JavaScript
Executable File
import { combineReducers } from 'redux';
|
|
import { routerReducer } from 'react-router-redux';
|
|
|
|
import whalesReducer from 'app/redux/whales';
|
|
|
|
export const rootReducer = combineReducers({
|
|
router: routerReducer,
|
|
|
|
whales: whalesReducer,
|
|
});
|