Skip to content

Instantly share code, notes, and snippets.

@mrcthms
Created July 31, 2020 08:21
Show Gist options
  • Save mrcthms/82230156ddf1250426a0ffb527eda197 to your computer and use it in GitHub Desktop.
Save mrcthms/82230156ddf1250426a0ffb527eda197 to your computer and use it in GitHub Desktop.
function C() {
const [open, setOpen] = useState(false)
return (
<>
<Tooltip {..props} open={open} onChangeVisibility={setOpen} />
<button onClick={() => setOpen(!open)}>I will toggle the Tooltip</button>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment