Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 1x | const notifications = {
item1: {
username: 'Val Handerly',
avatar: '/assets/images/avatar2.jpg',
title: 'mentioned you',
message: '@jrogers Could I please have a review on my presentation deck',
timestamp: '10 hours ago',
unread: true
},
item2: {
username: 'Jon Rogers',
avatar: '/assets/images/avatar3.jpg',
title: 'commented on your post',
message: 'I totally agree with your sentiment',
timestamp: '13 hours ago',
unread: true
},
item3: {
username: 'Rebecca Stone',
avatar: '/assets/images/avatar2.jpg',
title: 'mentioned you',
message: "@jrogers Here's the conversation I mentioned to you",
timestamp: '1 day ago',
unread: false
}
};
export default notifications;
|