Skip to content

Instantly share code, notes, and snippets.

@RishikeshVedpathak
Created December 10, 2019 11:17
Show Gist options
  • Select an option

  • Save RishikeshVedpathak/116b78639b7dcc92230e7530e57650df to your computer and use it in GitHub Desktop.

Select an option

Save RishikeshVedpathak/116b78639b7dcc92230e7530e57650df to your computer and use it in GitHub Desktop.
How to create context for your application
import React from "react";
const AppContext = React.createContext({});
export const ContextProvider = AppContext.Provider
export const ContextConsumer = AppContext.Consumer
export default AppContext
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment