ivangonzalez224 / Space-Travelers-Hub

This web application provides commercial and scientific space travel services. The app allows users to book rockets and join selected space missions. It uses SpaceX API to retrieve missions a rockets information. Built with React, Redux and Bootstrap.
https://space-travelers-hub-nvit.onrender.com/
MIT License
3 stars 0 forks source link

[1pt] Switch badges for Missions - Conditional components #6

Closed ivangonzalez224 closed 1 year ago

ivangonzalez224 commented 1 year ago

Missions that the user has joined already should show a badge "Active Member" instead of the default "NOT A MEMBER" and a button "Leave Mission" instead of the "Join Mission" button (as per design).

Use the React conditional rendering syntax:

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