❗ Read the lesson theory before solving this task
You are given an app
folder with already implemented store
and hooks
.
Use them to implement Dynamic list of TODOs
using the Redux. It should look and work identically, so use the same markup.
Here is the working version
features/currentTodo
contains a sample of all the required types;- implement
features/filter
storingquery
andstatus
; - implement
features/todos
storing an array of todos; - load the todos in the
App
on page load (don't use Redux Thunk for now); useAppSelector
already aware ofRootState
so you can write selectors in your components (no need to write them in the store file)
- Install Prettier Extention and use this VSCode settings to enable format on save.
- Replace
<your_account>
with your Github username in the DEMO LINK - Follow the React task guideline