React Context - useContext Hook
Introduction
In React, if you want to use a particular data in multiple components, what you would usually do is create the data in the parent component and pass it as a prop to all the children components that need it.
import { useState } from 'reac...
saje.hashnode.dev7 min read