SaveryIV / Space-X-Project

MIT License
1 stars 0 forks source link

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

Open SaveryIV opened 1 year ago

SaveryIV 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
)}
SaveryIV commented 1 year ago

Link to the PR: https://github.com/SaveryIV/Space-X-Project/pull/31/

iankiema commented 1 year ago

The switch badges is working well. Continue to the next step.