John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: ReactJS


React Context

Wrap all content that needs it in context provider

1
2
3
<Context.Provider value={values}>
	<everything that needs it>
</Context.Provider

Class

1
2
3
<Context.Consumer value={values}>
	<everything that needs it>
</Context.Consumer>

Function import { useContext } from 'react' const darkTheme = useContext(ThemeContext)


Backlinks

1
list from React Context AND !outgoing(React Context)

References:

Created:: 2022-01-15 20:26


Interactive Graph