(state={}, action)
| 143 | } |
| 144 | |
| 145 | const endpointReducer = (state={}, action) => { |
| 146 | switch(action.type) { |
| 147 | case '@@x-dashboard/UPDATE_ENDPOINT': |
| 148 | return action.payload |
| 149 | default: |
| 150 | return state |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | const selectCellReducer = (state=null, action) => { |
| 155 | if(action.type == '@@x-dashboard/SELECT_CELL') { |
nothing calls this directly
no outgoing calls
no test coverage detected