Reactjs – Problen in using context in react
I want to send the value of an inputbox useing useContext so i managed to create a context.js as fallow context.js import {createContext} from 'react' const menuContext = createContext('') export {menuContext} then use it in menu.js import React , {useState}…