-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
68 lines (64 loc) · 2.19 KB
/
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
module.exports = {
"comments" : {
"news": [
{
id: 1,
text: 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime mollitia',
createdAt: new Date().toString(),
user: {
id: 1,
fullName: 'mollie undersson',
avatarUrl: 'https://cdn.pixabay.com/photo/2021/09/08/02/46/lotus-6605296_1280.jpg'
},
post: {
id: 1,
title: 'something went wrong'
},
},
],
"popular": [
{
id: 1,
text: 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime mollitia',
createdAt: new Date().toString(),
user: {
id: 1,
fullName: 'mollie undersson',
avatarUrl: 'https://cdn.pixabay.com/photo/2021/09/08/02/46/lotus-6605296_1280.jpg'
},
post: {
id: 1,
title: 'something went wrong'
},
},
{
id: 2,
text: 'Lorem ipsum dolor sit amet. Maxime mollitia',
user: {
id: 1,
fullName: 'mollie undersson',
avatarUrl: 'https://cdn.pixabay.com/photo/2021/09/08/02/46/lotus-6605296_1280.jpg'
},
post: {
id: 1,
title: 'everything is ok'
},
createdAt: new Date().toString()
},
{
id: 3,
text: 'Lorem ipsum dolor sit rametdsfds amet amet consectetu adipisicing elit. Maxime mollitia',
user: {
id: 1,
fullName: 'mollie undersson',
avatarUrl: 'https://cdn.pixabay.com/photo/2016/02/19/11/23/women-1209678_1280.jpg'
},
post: {
id: 1,
title: 'ok nice'
},
createdAt: new Date().toString()
}
]
}
}