TedWildenradt / VacationBnB

2 stars 0 forks source link

Link to Live Site

VacationBnB

VacationBnb is a full-stack single-page web application inspired by AirBnB. The frontend utilizes React.js with Redux while the backend utilizes the Ruby on Rails framework with PostgreSQL.

Technologies Used:

Splash Page

Homes Listing Page

Individual Listing page

Booking Calendar

  <DateRangePicker
  startDate={this.state.start_date} 
  startDateId="start_date_id" 
  endDate={this.state.end_date} 
  endDateId="end_date_id" 
  onDatesChange={({ startDate, endDate }) => this.setState({ start_date: startDate, end_date: endDate })}
  focusedInput={this.state.focusedInput} 
  onFocusChange={focusedInput => this.setState({ focusedInput })} 
  startDatePlaceholderText="Check in"
  endDatePlaceholderText="Check out"
  numberOfMonths={1}
  />

Trips Page