Last active
May 2, 2021 14:28
-
-
Save aziis98/b96a217e6bf5ff8d9a1ec5607741ed23 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 apiResponse1 = { | |
| post: "Questa è la domanda di questo thread", | |
| votes: 1, | |
| timestamp: "un po' di fantasia", | |
| children: [ | |
| { | |
| content: "Questa è la prima riposta", | |
| votes: 1, | |
| timestamp: "un po' di fantasia", | |
| children: [] | |
| }, | |
| { | |
| content: "Questa è la seconda riposta", | |
| votes: 3, | |
| timestamp: "un po' di fantasia", | |
| children: [ | |
| { | |
| content: "Questa è una risposta alla seconda risposta", | |
| votes: 0, | |
| timestamp: "un po' di fantasia", | |
| children: [] | |
| }, | |
| { | |
| content: "Questa è un'altra risposta alla seconda risposta", | |
| votes: 0, | |
| timestamp: "un po' di fantasia", | |
| children: [] | |
| }, | |
| { | |
| content: "Questa è un'altra risposta alla seconda risposta", | |
| votes: 0, | |
| timestamp: "un po' di fantasia", | |
| children: [ | |
| { | |
| content: "Questo è ancora più ricorsivo", | |
| votes: 0, | |
| timestamp: "un po' di fantasia", | |
| children: [], | |
| } | |
| ] | |
| }, | |
| ] | |
| }, | |
| { | |
| content: "Questa è la terza riposta", | |
| votes: 0, | |
| timestamp: "un po' di fantasia", | |
| children: [] | |
| }, | |
| { | |
| content: "Questa è la quarta riposta", | |
| votes: 0, | |
| timestamp: "un po' di fantasia", | |
| children: [] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment