Space_Travelers icon indicating copy to clipboard operation
Space_Travelers copied to clipboard

Welcome to Space-Travelers-Hub, your premier web application for captivating commercial and scientific space travel services. Our state-of-the-art React/Redux implementation brings you an unparalleled...

Results 9 Space_Travelers issues
Sort by recently updated
recently updated
newest added

# Description This Pull Request introduces the work done in the `develop ` branch to the `master` branch of our Space Travelers' Hub app. The application meets all project requirements....

documentation
enhancement

[Kanban board](https://github.com/ClaudiaRojasSoto/Space_Travelers/projects/1) - [x] Dear reviewer, we would like you to keep in mind that our team is made up of two members. Greetings, @ClaudiaRojasSoto @CesarHerr

- Create a route and a view component. Use `` for the page navigation links and style active class to indicate which section/page the user is currently on (underline active...

Fetch data from the Dragons endpoint (https://api.spacexdata.com/v3/dragons) when a user navigates to the Dragons section. Once the data are fetched, dispatch an action to store the selected data in Redux...

- Use `useSelector()` Redux Hook to select the state slices and render lists of dragons in corresponding routes. i.e.: ```javascript // get rockets data from the store const rockets =...

- When a user clicks the "Reserve dragon" button, action needs to be dispatched to update the store. You need to get the ID of the reserved dragon and update...

- Follow the same logic as with the "Reserve dragon" - but you need to set the `reserved` key to `false`. - Dispatch these actions upon click on the corresponding...

Dragons that have already been reserved should show a "Reserved" badge and "Cancel reservation" button instead of the default "Reserve dragon" (as per design). Use the React conditional rendering syntax:...

Render a list of all reserved dragons (use `filter()`) on the "My profile" page.