react / useContext

Function: useContext()

function useContext<T>(context: Context<T>): T

Accepts a context object (the value returned from React.createContext) and returns the current context value, as given by the nearest context provider for the given context.

Type Parameters

Type Parameter
T

Parameters

Parameter Type
context Context<T>

Returns

T

Version

16.8.0

See

https://react.dev/reference/react/useContext

Defined in

.pnpm/@types+react@18.3.11/node_modules/@types/react/ts5.0/index.d.ts:1869

除非另有说明,本项目采用知识共享署名 4.0 国际许可协议进行许可,代码示例采用 Apache License 2.0 许可协议进行许可。