Introduction

In this chapter, a global state management pattern with React Hooks will be discussed.

We'll cover the following...

There are many situations for developers while working on React projects where it was required to share the same state in a number of React components. React documentation provides insights into the concept of “lifting state up.” There are benefits and drawbacks to this approach. It works well within one feature but when ...