-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
dummy-data.js
97 lines (95 loc) · 2.46 KB
/
dummy-data.js
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
89
90
91
92
93
94
95
96
97
const dummyData = [
{
id: "a",
username: "philzcoffee",
thumbnailUrl:
"https://tk-assets.lambdaschool.com/ecd33d34-c124-4b75-92d2-e5c52c171ed8_11201517_887808411287357_1307163552_a.jpg",
imageUrl:
"https://tk-assets.lambdaschool.com/69cf901b-f96d-466e-a745-ff2a01effac9_philz-image.jpg",
likes: 400,
timestamp: "July 17th 2017, 12:42:40 pm",
comments: [
{
id: 1,
username: "philzcoffee",
text:
"We've got more than just delicious coffees to offer at our shops!"
},
{
id: 2,
username: "biancasaurus",
text: "Looks delicious!"
},
{
id: 3,
username: "martinseludo",
text: "Can't wait to try it!"
}
]
},
{
id: "b",
username: "fortnite",
thumbnailUrl:
"https://tk-assets.lambdaschool.com/ce601fdf-7cb0-4098-83d3-1a1584a72513_30841289_342445456281079_112845064497004544_n.jpg",
imageUrl:
"https://tk-assets.lambdaschool.com/89d13918-b7a2-4b40-9658-f376ea3f6b59_37131538_213683546146400_1083714364399157248_n.jpg",
likes: 4307,
timestamp: "July 15th 2017, 03:12:09 pm",
comments: [
{
id: 1,
username: "twitch",
text: "Epic Street Fighter action here in Las Vegas at #EVO2017!"
},
{
id: 2,
username: "michaelmarzetta",
text: "Omg that match was crazy"
},
{
id: 3,
username: "themexican_leprechaun",
text: "What a setup"
},
{
id: 4,
username: "dennis_futbol",
text: "It that injustice"
},
{
id: 5,
username: "dennis_futbol",
text: "Is"
}
]
},
{
id: "c",
username: "playhearthstone",
thumbnailUrl:
"https://tk-assets.lambdaschool.com/c432f179-8bd7-4758-959d-d88a21f96bca_37105899_432228420518610_5035444036064772096_n.jpg",
imageUrl:
"https://tk-assets.lambdaschool.com/43bf01f9-319c-469d-8cf5-0120fe1007f1_yosemite.jpg",
likes: 5306,
timestamp: "July 14th 2017, 10:04:08 am",
comments: [
{
id: 1,
username: "playhearthstone",
text: "Love this shot!"
},
{
id: 2,
username: "awaywetravel",
text: "Yosemite is my most favorite place in the universe"
},
{
id: 3,
username: "awesomebt28",
text: "I like how Half Dome looks so old and useless"
}
]
}
];
export default dummyData;