Created
July 31, 2020 08:21
-
-
Save mrcthms/82230156ddf1250426a0ffb527eda197 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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