Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created April 2, 2020 03:17
Show Gist options
  • Save jsmanifest/c57129717b6326604e784825f1cf8def to your computer and use it in GitHub Desktop.
Save jsmanifest/c57129717b6326604e784825f1cf8def to your computer and use it in GitHub Desktop.
function ControlPanel({ children, ...rest }) {
const [opened, setOpened] = React.useState(false)
const open = () => setOpened(true)
const close = () => setOpened(false)
return (
<div>{React.cloneElement(children, { opened, open, close, ...rest })}</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment