import React from 'react'; import Carousel from 'nuka-carousel'; import { Link } from 'react-router-dom'; const SpotIndexItem = ({ spot }) => { return (
  • {/* */}
    PLUS VERIFIED · {spot.listing_type}
    {spot.title}
    {spot.num_guests} guests · Studio · {spot.num_beds + 1} beds · {spot.num_baths + 1} baths
    Free parking · wifi · tv · kitchen

    ★4.9({spot.id - 200 })

    ${spot.price}/night

  • ) }; export default SpotIndexItem;