0% completed
Follow the instructions below to complete the challenge:
configureStore
from @reduxjs/toolkit
.count
state with increment and decrement actions.useSelector
to get the count value from the store.useDispatch
to update the count when buttons are clicked.Counter
in App
Component:<Provider>
and render the Counter
component.Follow the instructions below to complete the challenge:
todos
array in the state.useSelector
.useDispatch
to add new todos to the store.App
Component:<Provider>
and render the TodoList
component......
.....
.....