-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.js
75 lines (75 loc) · 1.57 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
69
70
71
72
73
74
75
const data=[
{
text:'Wrote my first blog post ever on Medium',
date:'March 03 2017',
category:{
tag:'medium',
color:'#018f69'
},
link:{
url:'google.com',
text:'Read more'
}
},
{
text:'Started working on the app ideas repo',
date:'February 25 2019',
category:{
tag:'add-ideas',
color:'#018f69'
},
link:{
url:'#',
text:'Check in out'
}
},
{
text:'Started the weekly coding challenge',
date:'March 04 2019',
category:{
tag:'blog',
color:'#e17b77'
},
link:{
url:'#',
text:'check it out'
}
},
{
text:'Over 12000 views in a single day on my post',
date:'April 05 2019',
category:{
tag:'medium',
color:'#018f69'
},
link:{
url:'#',
text:'See Profile'
}
},
{
text:'Wrote my first blog post ever on Medium',
date:'March 03 2017',
category:{
tag:'medium',
color:'#018f69'
},
link:{
url:'google.com',
text:'Read more'
}
},
{
text:'Started working on the app ideas repo',
date:'February 25 2019',
category:{
tag:'add-ideas',
color:'#018f69'
},
link:{
url:'#',
text:'Check in out'
}
}
]
export default data;