Skip to content

Instantly share code, notes, and snippets.

@nazifbara
Created May 10, 2021 10:20
Show Gist options
  • Save nazifbara/93d068178d9e37455a8eae20545fd37b to your computer and use it in GitHub Desktop.
Save nazifbara/93d068178d9e37455a8eae20545fd37b to your computer and use it in GitHub Desktop.
// src/modal.js
function ModalOpenButton({ children }) {
const [, setIsOpen] = React.useContext(ModalContext);
return <button onClick={() => setIsOpen(true)}>{children}</button>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment