import React from 'react';
class BookingFooter extends React.Component {
render(){
let { openModal } = this.props
return(
{/* ${price}/night */}
${this.props.spot.price}/night
{/*
*/}
{/*
*/}
)
}
}
export default BookingFooter;
// const BookingFooter = ( {openModal} ) => {
// // const price = props.spot.price
// return (
//
//
//

//
//
//
// {/* ${price}/night */}
// $150/night
//
//
// {/*
*/}
//
//
// );
// };