export const listingLoading = (state = false, action) => {
  switch (action.type) {
    case 'LOAD_LISTING_REQUEST':
      return true;
    case 'LOAD_LISTING_SUCCESS':