Created
September 29, 2019 05:54
-
-
Save oleersoy/5f7e000d7f43ccacb643aa42dee15544 to your computer and use it in GitHub Desktop.
input.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const postCategories: PostCategory[] = [ | |
{ | |
id: "iot", | |
name: "IOT", | |
summary: "Internet of Things Posts.", | |
posts: [ | |
{ | |
id: "thermostat", | |
title: "Thermostat", | |
content: "How to make it really cold fast!" | |
}, | |
{ | |
id: "doorbell", | |
title: "Doorbell", | |
content: "DING DONG!!! Turkey is Done!!" | |
} | |
] | |
}, | |
{ | |
id: "ml", | |
name: "ML", | |
summary: "Machine Learning for Smarties", | |
posts: [ | |
{ | |
id: "deep9", | |
title: "Deep9", | |
content: "How to Machine Learning by Going Deep!" | |
} | |
] | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment