0
3
JRJose Romero
contextuseContexthookβ’β’β’
React TypeScript RecipesAccepts a context object (the value returned from React.createContext
) and returns the current context value for that context. The current context value is determined by the value prop of the nearest <Context.Provider> above the calling component in the tree.
Library: react
Shortcut: react.hook.context.use
import { useContext } from "react";
const value = useContext(Context);