-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockData.js
28 lines (27 loc) · 1.18 KB
/
mockData.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
const mockData = [
{
username: 'Paz',
handler: 'pazisawesome',
message: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s',
time: '5pm'
},
{
username: 'Patrick',
handler: 'patontheback',
message: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived five centuries.',
time: '3pm'
},
{
username: 'Manoela',
handler: 'moltentrash',
message: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry',
time: '3.35pm'
},
{
username: 'Alex',
handler: 'alexscores',
message: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived five centuries.',
time:'2.35pm'
},
]
module.exports = mockData