hongbo-miao/hongbomiao.com

View on GitHub
web/src/shared/reducers/rootReducer.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { combineReducers } from 'redux';
import meReducer from '../../Home/reducers/meReducer';
import healthReducer from '../../health/reducers/healthReducer';

const rootReducer = combineReducers({
  health: healthReducer,
  me: meReducer,
});

export default rootReducer;