bhushan354 / Space-Travelers-Project

In this project, Me and my Coding Partner worked with the real live data from the SpaceX API. In which , we have built a web application for a company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[1pt] Switch badges for Missions - Conditional components

bhushan354 opened this issue · comments

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
)}