Abdulali Noori
Abdulali Noori
## Space Traveler's Hub: Setup and render missions list ### 🌟Features: > - [ ] - [`Missions`]() component modified to render mission list. > - [ ] - Missions page...
## React Todo App: Peers review ### 🌟Features: > - [ ] - React [`Todo`](https://github.com/ab-noori/react-todo-app/tree/f437cf9d3e2000b9278125266f5d1874b14ccc09/src) application is created. > - [ ] - [`Todo`](https://github.com/ab-noori/react-todo-app/blob/f437cf9d3e2000b9278125266f5d1874b14ccc09/src/App.js#L5) and [`TodoForm`](https://github.com/ab-noori/react-todo-app/blob/f437cf9d3e2000b9278125266f5d1874b14ccc09/src/App.js#L31) components are added. >...
## Bookstore: Connect to API ### 🌟Features: - [ ] [`Redux provider`](https://github.com/ab-noori/bookstore/blob/8fc091f403762f8b8f830fb546ae6d749addbde9/src/App.js#L2) is added to App. - [ ] [`Book array`](https://github.com/ab-noori/bookstore/blob/8fc091f403762f8b8f830fb546ae6d749addbde9/src/redux/books/booksSlice.js#L3) is added initial state to booksSlice. - [ ]...
I have been using GitHub pages since the beginning of the My-Portfolio project. You can see the branch deployment link on each of my PR. Below is my project deployment...
## Kanban board set up > - [ ] - Team members: 2 members (@til2to & @ab-noori ) > - [ ] - Project link: https://github.com/ab-noori/Space-Travelers-Hub/projects/3
Render a list of all joined missions (use filter()) on the "My profile" page.
- 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 Missions endpoint (https://api.spacexdata.com/v3/missions) when a user navigates to the Missions 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 missions in corresponding routes. i.e.: ```javascript // get rockets data from the store const rockets =...
- When a user clicks the "Join Mission" button, action needs to be dispatched to update the store. You need to get the ID of the selected mission and update...