forked from wardleApp/Wardle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampledata.js
More file actions
executable file
·66 lines (65 loc) · 1.57 KB
/
sampledata.js
File metadata and controls
executable file
·66 lines (65 loc) · 1.57 KB
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
60
61
62
63
64
65
66
const sampleFeed = [
{
transactionId: 123,
amount: 12.45,
timestamp: '2017-102 T 10:15 UTC',
note: '🍴 Dinner Plans!',
payee: {
userId: 1234,
username: 'sarah-jacobs',
fullName: 'Sarah Jacobs',
firstName: 'Sarah',
lastName: 'Jacobs'
},
payer: {
userId: 1435,
username: 'daniel-dog',
fullName: 'Daniel Rimmings',
firstName: 'Daniel',
lastName: 'Rimmings',
avatarUrl: 'https://raw.githubusercontent.com/Ashwinvalento/cartoon-avatar/master/lib/images/male/45.png'
}
},
{
transactionId: 124,
amount: 80.99,
timestamp: '2017-082 T 10:15 UTC',
note: '🏡 Rent due',
payee: {
userId: '1435',
username: 'daniel-dog',
fullName: 'Daniel Rimmings',
firstName: 'Daniel',
lastName: 'Rimmings'
},
payer: {
userId: '1234',
username: 'sarah-jacobs',
fullName: 'Sarah Jacobs',
firstName: 'Sarah',
lastName: 'Jacobs',
avatarUrl: 'https://raw.githubusercontent.com/Ashwinvalento/cartoon-avatar/master/lib/images/female/45.png'
}
},
{
transactionId: 12,
amount: 12.99,
timestamp: '2017-082 T 10:15 UTC',
note: 'Sorry this took so long',
payee: {
userId: '1435',
username: 'daniel-dog',
fullName: 'Chappers Finnigan',
firstName: 'Chappers',
lastName: 'Finnigan'
},
payer: {
userId: '1234',
username: 'sarah-jacobs',
fullName: 'Poppy Poppers',
firstName: 'Sarah',
lastName: 'Jacobs'
}
}
];
module.exports.sampleFeed = sampleFeed;