ericmahare / space-travellers-hub

The Space Travelers hub is an application that allows adventurers to make custom reservations of rockets and dragons for space travel. Also, users have an opportunity to select a mission of their choice.
MIT License
1 stars 0 forks source link

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

Open ericmahare opened 2 years ago

ericmahare commented 2 years 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
)}