const nestedColumns = (state = false, action) => {
    const { isShowingNestedColumns } = action;
    switch (action.type) {
        case NESTED_COLUMNS.SET_IS_SHOWING_NESTED_COLUMNS:
            return isShowingNestedColumns;