josuerushanika / space-travelers

A web app that pulls from the SpaceX API to allow users to view, book, and join commercial and scientific space travel services. Built with React & Redux.
https://space-travelers-f2ji.onrender.com/
MIT License
1 stars 0 forks source link

[1pt] Switch badges for Rockets - Conditional components #5

Open josuerushanika opened 1 year ago

josuerushanika commented 1 year ago

Rockets that have already been reserved should show a "Reserved" badge and "Cancel reservation" button instead of the default "Reserve rocket" (as per design)

Use the React conditional rendering syntax:

{rocket.reserved && ( 
    // render Cancel Rocket button
)}