Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. render() {
  2. return (
  3. <div>
  4. <button onClick={(e) => { console.log('Scrolling to Item 1');}}>Button0</button>
  5. <button onClick={(e) => { console.log('Scrolling to Item 2');}}>Button1</button>
  6. <Layout>
  7. <Item>
  8. <Content>
  9. ...
  10. </Content>
  11. </Item>
  12.  
  13. <Item>
  14. <Content>
  15. ...
  16. </Content>
  17. </Item>
  18.  
  19. </Layout>
  20. }
  21. </div>
  22. );
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement