forked from bloominstituteoftechnology/React-Insta-Clone
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdummy-data.js
83 lines (82 loc) · 2.89 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
const dummyData = [
{
username: "philzcoffee",
thumbnailUrl: 'https://scontent-sjc2-1.cdninstagram.com/t51.2885-19/11201517_887808411287357_1307163552_a.jpg',
imageUrl: 'https://scontent-sjc2-1.cdninstagram.com/t51.2885-15/e35/20066915_1526002357431295_3266739979170086912_n.jpg',
likes: 400,
timestamp: "July 17th 2017, 12:42:40 pm",
comments: [
{
username: "philzcoffee",
text: "We've got more than just delicious coffees to offer at our shops!"
},
{
username: "biancasaurus",
text: "Looks delicious!"
},
{
username: "martinseludo",
text: "Can't wait to try it!"
}
]
},
{
username: "twitch",
thumbnailUrl: 'https://scontent-sjc2-1.cdninstagram.com/t51.2885-19/10684037_1512272482349821_444823433_a.jpg',
imageUrl: 'https://scontent-sjc2-1.cdninstagram.com/t51.2885-15/e35/19985884_314122025700633_6705675951834923008_n.jpg',
likes: 4307,
timestamp: "July 15th 2017, 03:12:09 pm",
comments: [
{
username: "twitch",
text: "Epic Street Fighter action here in Las Vegas at #EVO2017!"
},
{
username: "michaelmarzetta",
text: "Omg that match was crazy"
},
{
username: "themexican_leprechaun",
text: "What a setup"
},
{
username: "dennis_futbol",
text: "It that injustice"
},
{
username: "dennis_futbol",
text: "Is"
}
]
},
{
username: "playhearthstone",
thumbnailUrl: 'https://scontent-sjc2-1.cdninstagram.com/t51.2885-19/s150x150/13398400_140638743023210_310840336_a.jpg',
imageUrl: 'https://scontent-sjc2-1.cdninstagram.com/t51.2885-15/e35/19985681_748672068646566_4231149029783764992_n.jpg',
likes: 5306,
timestamp: "July 14th 2017, 10:04:08 am",
comments: [
{
username: "playhearthstone",
text: "Power alone is not to be feared. Fear instead those who wield it! #FrozenThrone #Expansion #DeathKnights"
},
{
username: "tapmelon",
text: "Wish that death knight could be added as a new playable class in this expansion."
},
{
username: "micpetboudreau",
text: "Can't wait"
},
{
username: "awaywetravel",
text: "I <3 Hearthstone."
},
{
username: "awesomebt28",
text: "I like how gul'dan looks so old and useless"
}
]
}
];
export default dummyData;