Skip to content

Instantly share code, notes, and snippets.

@Sergioamjr
Created July 7, 2019 17:32
Show Gist options
  • Save Sergioamjr/8850f1e065642d0ff93056f7ca82a0a7 to your computer and use it in GitHub Desktop.
Save Sergioamjr/8850f1e065642d0ff93056f7ca82a0a7 to your computer and use it in GitHub Desktop.
import React from "react";
export const initialState = {
store: {},
dispatch: () => {}
};
const Context = React.createContext(initialState);
export default Context;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment