import React from 'react'; import SpotIndexItem from './spot_index_item'; import SpotMapContainer from './spot_map_container'; import NavBarIndexContainer from '../search/navbar_index/navbar_index_container'; class SpotIndex extends React.Component { constructor(props) { super(props); } // componentDidMount(){ // } render() { const spots = this.props.spots.map(spot => ( )); return (
Airbnb Plus places to stay in San Francisco
    {spots}
); } } export default SpotIndex;