Skip to content

Instantly share code, notes, and snippets.

@paigen11
Created March 1, 2020 17:46
Show Gist options
  • Save paigen11/b0aeef0f1ed24d4c409af5a19182e3eb to your computer and use it in GitHub Desktop.
Save paigen11/b0aeef0f1ed24d4c409af5a19182e3eb to your computer and use it in GitHub Desktop.
Initial createContext file for a new context instance in a React application.
import { createContext } from 'react';
const CheckoutDrawerContext = createContext({
showDrawer: false,
toggleCheckoutDrawer: () => {},
});
export default CheckoutDrawerContext;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment