shierro/territory-manager

View on GitHub
app/containers/PeopleListPage/reducer.js

Summary

Maintainability
A
0 mins
Test Coverage
import { fromJS } from 'immutable';

export const initialState = {};

function PeopleListPageReducer(state = fromJS(initialState), action) {
  switch (action.type) {
    default:
      return state;
  }
}

export default PeopleListPageReducer;