const selectAllReducer = (state = false, action) => {
    const { selectAll } = action;
    switch (action.type) {
        case SELECT_ALL.SET_SELECT_ALL:
            return selectAll;