Skip to content

Instantly share code, notes, and snippets.

@paigen11
Last active March 1, 2020 18:18
Show Gist options
  • Save paigen11/c65246e63178658c7975df3e9a3555a9 to your computer and use it in GitHub Desktop.
Save paigen11/c65246e63178658c7975df3e9a3555a9 to your computer and use it in GitHub Desktop.
The values and functions a context provider would be provided with where it's initialized to wrap a component.
const [showDrawer, setShowDrawer] = useState(false);
const toggleCheckoutDrawer = () => {
setShowDrawer(!showDrawer);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment