Skip to content

Instantly share code, notes, and snippets.

@devuxer
Created March 22, 2019 01:52
Show Gist options
  • Save devuxer/e4e60776bfe87eafcdc025c09904123e to your computer and use it in GitHub Desktop.
Save devuxer/e4e60776bfe87eafcdc025c09904123e to your computer and use it in GitHub Desktop.
function MyComponent({ isOpen }) {
if (!isOpen) return null;
const store = useContext(StoreContext);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment