mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-19 07:18:06 +02:00
10 lines
245 B
JavaScript
Executable file
10 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,
|
|
});
|