Guest User

Untitled

a guest
Jun 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. ...
  2. <Toggle>
  3. {({on,toggle}) => (
  4. <div>
  5. <button onClick={toggle}>Show/Hidden</button>
  6. { on && <Portal>
  7. <h1>Hello World</h1>
  8. </Portal>
  9. }
  10. </div>
  11. )}
  12. </Toggle>
Add Comment
Please, Sign In to add comment