import { INV_NUMBERS_LIST_REQUEST, SUCCESS } from "../../../actions/action-types";
import {LOCATION_CHANGE} from "react-router-redux";
const initialState = [];
export const invNumbersListReducer = (state = initialState, action) => {
switch (action.type) {
case ${INV_NUMBERS_LIST_REQUEST}${SUCCESS}
:
return action.payload;
case LOCATION_CHANGE: { return initialState }
default: return state;
}
};