Skip to content

Instantly share code, notes, and snippets.

@saigowthamr
Created April 5, 2018 12:10
Show Gist options
  • Select an option

  • Save saigowthamr/cadf4ba081d01c6c1342dcfd865611eb to your computer and use it in GitHub Desktop.

Select an option

Save saigowthamr/cadf4ba081d01c6c1342dcfd865611eb to your computer and use it in GitHub Desktop.
import React from "react";
const state = {
number: 0
};
const NumberContext = React.createContext(state.number); //passing initial value
export default NumberContext;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment