const isDeleting = (state: boolean = false, action: ActionType) => {
  switch (action.type) {
    case DELETE_USER_REQUEST:
      return true;
    case DELETE_USER_SUCCESS: