Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. const postCategories: PostCategory[] = [
  2. {
  3. id: "iot",
  4. name: "IOT",
  5. summary: "Internet of Things Posts.",
  6. posts: [
  7. {
  8. id: "thermostat",
  9. title: "Thermostat",
  10. content: "How to make it really cold fast!"
  11. },
  12. {
  13. id: "doorbell",
  14. title: "Doorbell",
  15. content: "DING DONG!!! Turkey is Done!!"
  16. }
  17. ]
  18. },
  19. {
  20. id: "ml",
  21. name: "ML",
  22. summary: "Machine Learning for Smarties",
  23. posts: [
  24. {
  25. id: "deep9",
  26. title: "Deep9",
  27. content: "How to Machine Learning by Going Deep!"
  28. }
  29. ]
  30. }
  31.  
  32. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement