Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GuillaumeDaviid/da85da7fee4a02c25ee62a103810a51a to your computer and use it in GitHub Desktop.
Save GuillaumeDaviid/da85da7fee4a02c25ee62a103810a51a to your computer and use it in GitHub Desktop.
hooks: example 2
import { createContext } from 'react'
export const YourContext = createContext();
export const YourProvider = ({children}) => {
// traitement de vos data
return (
<YourProvider.Provider value = {{value}}>
{children}
</YourProvider.Provider>
)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment