Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
function useContext
import { useContext } from "https://deno.land/x/netzo@0.3.66/deps/preact/hooks.ts";

Returns the current context value, as given by the nearest context provider for the given context. When the provider updates, this Hook will trigger a rerender with the latest context value.

Parameters

context: PreactContext<T>

The context you want to use