Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. const data = {
  2. id: 1,
  3. uriAvatar: require("../src/images/dog-avatar.jpg"),
  4. username: "Linh Dog",
  5. uriPhoto: require("../src/images/dog.jpg"),
  6. like: 10,
  7. emotion: true,
  8. comment: "so cute!!!"
  9. }
  10. const comments = [
  11. {
  12. id: 1,
  13. uriAvatar: require("../src/images/dog-avatar.jpg"),
  14. name: "Linh dog",
  15. content: "so cutes",
  16. time: "1",
  17. emotion: true
  18. },
  19. {
  20. id: 2,
  21. uriAvatar: require("../src/images/cat-avatar.png"),
  22. name: "Linh cat",
  23. content: "so cutes gogo",
  24. time: "1",
  25. emotion: false
  26. },
  27. {
  28. id: 3,
  29. uriAvatar: require("../src/images/elephant-avatar.png"),
  30. name: "Linh elephant",
  31. content: "so cutes qwow ",
  32. time: "1",
  33. emotion: true
  34. }
  35. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement