-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
88 lines (86 loc) · 2.97 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"currentUser": {
"image": {
"png": "./images/avatars/image-burcu.png",
"webp": "./images/avatars/image-burcu.webp"
},
"username": "burcu"
},
"comments": [
{
"id": 1,
"content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie, dictum est a, mattis tellus.",
"createdAt": "1 minute ago",
"score": 12,
"user": {
"image": {
"png": "./images/avatars/image-user.png",
"webp": "./images/avatars/image-user.webp"
},
"username": "Fourthy"
},
"replies": []
},
{
"id": 2,
"content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie, dictum est a, mattis tellus.",
"image": {
"png": "./images/avatars/image-crypto.png",
"webp": "./images/avatars/image-crypto.webp"
},
"createdAt": "3 minute ago",
"score": 12,
"user": {
"image": {
"png": "./images/avatars/image-CryptoCurrent.png",
"webp": "./images/avatars/image-CryptoCurrent.webp"
},
"username": "CryptoCurrent"
},
"replies": []
},
{
"id": 3,
"content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie, dictum est a, mattis tellus.",
"createdAt": "5 minutes ago",
"score": 5,
"user": {
"image": {
"png": "./images/avatars/image-Prettyflw.png",
"webp": "./images/avatars/image-Prettyflw.webp"
},
"username": "Prettyflw"
},
"replies": [
{
"id": 4,
"content": "If you're still new, I'd recommend focusing on the fundamentals of HTML, CSS, and JS before considering React. It's very tempting to jump ahead but lay a solid foundation first.",
"createdAt": "7 minutes ago",
"score": 4,
"replyingTo": "Prettyflw",
"user": {
"image": {
"png": "./images/avatars/image-michaelsaylor.png",
"webp": "./images/avatars/image-michaelsaylor.webp"
},
"username": "michaelsaylor"
}
},
{
"id": 5,
"content": "I couldn't agree more with this. Everything moves so fast and it always seems like everyone knows the newest library/framework. But the fundamentals are what stay constant.",
"createdAt": "2 days ago",
"score": 2,
"replyingTo": "michaelsaylor",
"user": {
"image": {
"png": "./images/avatars/image-burcu.png",
"webp": "./images/avatars/image-burcu.webp"
},
"username": "burcu"
}
}
]
}
]
}