diff options
Diffstat (limited to 'frontend/app/data/raw/notifications.js')
| -rw-r--r-- | frontend/app/data/raw/notifications.js | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/frontend/app/data/raw/notifications.js b/frontend/app/data/raw/notifications.js new file mode 100644 index 0000000..967bec0 --- /dev/null +++ b/frontend/app/data/raw/notifications.js @@ -0,0 +1,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; |