You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -2250,7 +2250,7 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
2250
2250
2251
2251
- **Assignment 1** : Add more cases in Account Reducer called `decrementByAmount` . Also check that amount should not be decremented in case `amount` to be decremented is less than account Balance. For e.g. if total amount in account is 10, you can't decrement by 11. Also show an error in that situation to user.
2252
2252
2253
-
- **Assignment 2** : Check out IMMER library and run some example and see how you can make mutating updates like `state.amount++` inside reducer logic. And still it work perfectly in redux.
2253
+
- **Assignment 2** : Check out IMMER library and run some example and see how you can make mutating updates like `state.amount++` inside reducer logic. And still it work perfectly in redux.
2254
2254
[Immer Link](https://immerjs.github.io/immer/)
2255
2255
2256
2256
### Related Videos
@@ -2266,16 +2266,21 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
2266
2266
- You an `INPUTBOX` to add new users to `list` , users show also add to database and updated in list.[Hint: use REST API concepts for Create API, POST method]
2267
2267
- You can put a `delete` button on end of list item. On clicking of this button `user` list item will be deleted from database. [Hint: use REST API concepts Delete API, DELETE method]
2268
2268
- You can put a `selected` button on end of list item. On clicking of this button `user` list item will change colors. [Hint: use REST API concepts Update API, PUT/PATCH method]
2269
+
-
2270
+
### Related Videos
2271
+
1. [ REST API concepts](https://youtu.be/xrB51fPM1K4)
2272
+
2. [REST API complete explanation in NodeJS](https://youtu.be/ChVE-JbtYbM?t=10913)
2269
2273
2270
2274
2271
2275
## Chapter 4 - Redux Toolkit Query
2272
2276
2273
-
2277
+
2274
2278
2275
2279
## Chapter 5 - Redux Toolkit with Async Thunk - Product and Cart Project
2276
2280
2277
-
- **Assignment 1** : Add a `<Select>` on Product Card also which shows quantity selector, So user can add item with a particular quantity also initially.
2278
-
- **Assignment 2** : Change the `<Select>` on Cart Items to `+` and `-` buttons which should increment or decrement quantity of item in the cart. Also check if Cart total is coming correct.
2281
+
- **Assignment 1** : Add a `<Select>` on Product Card also which shows quantity selector, So user can add item with a particular quantity also initially.
2282
+
- **Assignment 2** : Change the `<Select>` on Cart Items to `+` and `-` buttons which should increment or decrement quantity of item in the cart. Also check if Cart total is coming correct.
0 commit comments