Skip to content

Instantly share code, notes, and snippets.

@zapkub
Last active November 15, 2018 11:24
Show Gist options
  • Save zapkub/5ce3d892f7284b4aa79a5f7ede5e1f06 to your computer and use it in GitHub Desktop.
Save zapkub/5ce3d892f7284b4aa79a5f7ede5e1f06 to your computer and use it in GitHub Desktop.
const TodoStoreContext = React.createContext();
const TodoStoreProvider = ({ children }) => {
const store = {
todos: [
{
title: "Touch myself."
},
{
title: "Sleep peacefully"
}
]
};
return (
<TodoStoreContext.Provider value={store}>
{children}
</TodoStoreContext.Provider>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment