KyivKrishnaAcademy/ved_akadem_students

View on GitHub
client/app/bundles/group-performance/reducers/root-reducer.jsx

Summary

Maintainability
A
0 mins
Test Coverage
// A real world app will likely have many reducers and it helps to organize them in one file.
import groupPerformanceReducer from './group-performance-reducer';
import { initialState as groupPerformanceState } from './group-performance-reducer';
import { combineReducers } from 'redux';

export const initialStates = {
  groupPerformanceState,
};

const reducer = combineReducers({
  groupPerformanceStore: groupPerformanceReducer,
});

export default reducer;