In this task, we work with the real live data from the SpaceX API, a web application for a company that provides commercial and scientific space travel services. The application allows users to book rockets and join selected space missions.
We have done the following to reach this milestone:
Created routes and view components: rockets, missions, my profile.
Used for the page navigation links and style active class to indicate which section/page user is currently on (underline active navigation link).
Created directories for all Redux state slice files:rockets, missions.
Render UI:lists
Used useSelector() Redux Hook to select the state slices and render lists of rockets and missions in corresponding routes.
Rendered a list of rockets (as per design).
Rendered a table with the missions' data (as per design).
Redux:
Wrote actions and reducers for booking rockets and joining missions
Wrote actions and reducers for canceling rockets/dragons and leaving missions
We have done the following to reach this milestone:
Created routes and view components: rockets, missions, my profile. Used for the page navigation links and style active class to indicate which section/page user is currently on (underline active navigation link). Created directories for all Redux state slice files:rockets, missions. Render UI:lists
Redux: