Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. class ShoppingList extends React.Component {
  2.  
  3. constructor(props){
  4. super(props);
  5. this.state = {
  6. pageNumber: 1
  7. }
  8. }
  9.  
  10.  
  11. render() {
  12. return (
  13. <div className="shopping-list" id="scrolldiv">
  14. <ul>
  15. <li>Instagram</li>
  16. <li>WhatsApp</li>
  17. <li>Oculus</li>
  18. <li>Instagram</li>
  19. <li>WhatsApp</li>
  20. <li>Oculus</li>
  21. </ul>
  22. </div>
  23. );
  24. }
  25. }
Add Comment
Please, Sign In to add comment