From 20f8a97bf87a2ddf68749299642d45d3a1fdda71 Mon Sep 17 00:00:00 2001 From: Akash Patil Date: Mon, 27 Sep 2021 21:01:08 +0530 Subject: [PATCH 1/2] Added blogs related to react state management and redux middleware --- react-state-management.md | 6 +++++- redux-middleware.md | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/react-state-management.md b/react-state-management.md index fcaad50..8d9af5b 100644 --- a/react-state-management.md +++ b/react-state-management.md @@ -54,6 +54,10 @@ - **How to Work with and Manipulate State in React** https://www.sitepoint.com/work-with-and-manipulate-state-in-react/ Covers how to access and update state in components, the difference between state and props, and working with stateless components. + +- **React state management: What is it and why to use it?** + https://www.loginradius.com/blog/async/react-state-management/ + Gives an introduction to state management in React and how to implement it using React hooks/Redux. - **Lowest Common Ancestor** https://blog.embermap.com/lowest-common-ancestor-fbf5d5313a1 @@ -77,7 +81,7 @@ - **Three approaches to distribute the state across components in React** https://engineering.hexacta.com/three-approaches-to-distribute-the-state-across-components-in-react-da4db5a389e0 - Looks at three ways to handle state that needs to apply to sibling components: controlling the state in the parent, synchronizing the states, and forcing a different component instance via the `key` prop + Looks at three ways to handle state that needs to apply to sibling components: controlling the state in the parent, synchronizing the states, and forcing a different component instance via the `key` prop #### Using `setState` diff --git a/redux-middleware.md b/redux-middleware.md index dc01bd1..7208122 100644 --- a/redux-middleware.md +++ b/redux-middleware.md @@ -9,6 +9,10 @@ - **Understanding Redux Middleware** https://medium.com/@meagle/understanding-87566abcfb7a Breaks down Redux's applyMiddleware function line-by-line, and explains the concepts involved + +- **Introduction to Redux Saga** + https://www.loginradius.com/blog/async/introduction-to-redux-saga/ + An easy to understand high level introduction to Redux Saga. - **Building Redux Middleware** https://reactjsnews.com/redux-middleware From fe59f435904925e8f483e8dadd16dc3dc712e561 Mon Sep 17 00:00:00 2001 From: Akash Patil Date: Mon, 27 Sep 2021 21:07:42 +0530 Subject: [PATCH 2/2] Added spaces as required --- react-state-management.md | 4 ++-- redux-middleware.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/react-state-management.md b/react-state-management.md index 8d9af5b..60b485d 100644 --- a/react-state-management.md +++ b/react-state-management.md @@ -55,8 +55,8 @@ https://www.sitepoint.com/work-with-and-manipulate-state-in-react/ Covers how to access and update state in components, the difference between state and props, and working with stateless components. -- **React state management: What is it and why to use it?** - https://www.loginradius.com/blog/async/react-state-management/ +- **React state management: What is it and why to use it?** + https://www.loginradius.com/blog/async/react-state-management/ Gives an introduction to state management in React and how to implement it using React hooks/Redux. - **Lowest Common Ancestor** diff --git a/redux-middleware.md b/redux-middleware.md index 7208122..1670294 100644 --- a/redux-middleware.md +++ b/redux-middleware.md @@ -10,8 +10,8 @@ https://medium.com/@meagle/understanding-87566abcfb7a Breaks down Redux's applyMiddleware function line-by-line, and explains the concepts involved -- **Introduction to Redux Saga** - https://www.loginradius.com/blog/async/introduction-to-redux-saga/ +- **Introduction to Redux Saga** + https://www.loginradius.com/blog/async/introduction-to-redux-saga/ An easy to understand high level introduction to Redux Saga. - **Building Redux Middleware**