File size: 289 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// @flow
const constants = require('./constants');
const { DATE, BRIAN_ID } = constants;
module.exports = [
{
id: '1',
notificationId: '1',
createdAt: new Date(DATE),
userId: BRIAN_ID,
entityAddedAt: new Date(DATE + 1),
isRead: false,
isSeen: false,
},
];
|