useContext() - React Hooks
1. Set Up the Context
create a file called ThemeContext.js and add the below code
// ๐ context/ThemeContext.js
import React, { useState, createContext } from "react";
// Create context object
// const ThemeContext = React.createContext();
const The...
namaste-react.hashnode.dev2 min read