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
|
const notifications = [
{
id: 1,
type: 'follow',
description: 'liked profile page for Dribbble App Design Concept',
time: -1,
}, {
id: 2,
type: 'like',
description: 'liked a photo on your album',
time: -271,
attach: require('../img/Image8.png'),
}, {
id: 3,
type: 'like',
description: 'liked a photo on your album',
time: -541,
attach: require('../img/Image8.png'),
}, {
id: 4,
type: 'like',
description: 'liked profile page for Dribbble App Design Concept',
time: -811,
}, {
id: 5,
type: 'like',
description: 'liked profile page for Dribbble App Design Concept',
time: -1081,
}, {
id: 6,
type: 'follow',
description: 'followed you UI/UX Designer and Interaction Designer',
time: -1351,
}, {
id: 7,
type: 'follow',
description: 'liked a photo on your album',
time: -1621,
attach: require('../img/Image8.png'),
}, {
id: 8,
type: 'follow',
description: 'followed you iOS Developer and Graphic Designer',
time: -1891,
}, {
id: 9,
type: 'follow',
description: 'liked profile page for Dribbble App Design Concept',
time: -2161,
}, {
id: 10,
type: 'like',
description: 'liked a photo on your album',
time: -2431,
attach: require('../img/Image8.png'),
},
];
export default notifications;
|