21 lines
387 B
JavaScript
21 lines
387 B
JavaScript
import DmsActionTypes from "./dms.types";
|
|
|
|
const INITIAL_STATE = {
|
|
eventLog: [],
|
|
};
|
|
|
|
const dmsReducer = (state = INITIAL_STATE, action) => {
|
|
switch (action.type) {
|
|
// case ApplicationActionTypes.SET_SELECTED_HEADER:
|
|
// return {
|
|
// ...state,
|
|
// selectedHeader: action.payload,
|
|
// };
|
|
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export default dmsReducer;
|