-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.js
61 lines (59 loc) · 1.51 KB
/
library.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
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
'use strict';
const library = {
library: {
items: [
{
_id: '846ac85b-533d-4134-aa9a-df4ba535abc0',
name: 'Journaling',
description: '',
image: require('./src/assets/write.jpg'),
tags: ['mindfulness'],
},
{
_id: '47ceeac7-b5bc-44d9-bf6f-e0f5270bb32f',
name: 'Meditating',
description: '',
image: require('./src/assets/meditate.jpg'),
tags: ['mindfulness'],
},
{
_id: 'd5153c90-7a43-4d8d-94e4-8f6f680d1703',
name: 'Working-out',
description: '',
image: require('./src/assets/workout.jpg'),
tags: ['health'],
},
{
_id: '8111835a-af89-483a-8dec-de1cf6af6062',
name: 'Sleeping well',
description: '',
image: require('./src/assets/sleep.jpg'),
tags: ['health'],
},
{
_id: '6bb4971f-5dbf-499e-b597-713778da5a22',
name: 'Eating healthy',
description: '',
image: require('./src/assets/eat.jpg'),
tags: ['health'],
},
{
_id: 'f9bfdacb-71b0-43b0-ac9b-38e73382de5b',
name: 'Reading',
description: '',
image: require('./src/assets/read.jpg'),
tags: ['development'],
},
{
_id: '5b79aee8-92ff-4086-a3fc-809ffae424bb',
name: 'No social networks',
description: '',
image: require('./src/assets/socialmedia.jpg'),
tags: [],
},
],
popularity: {
},
}
};
export default library;