-
Notifications
You must be signed in to change notification settings - Fork 0
/
initial.js
71 lines (70 loc) · 1.87 KB
/
initial.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
62
63
64
65
66
67
68
69
70
71
module.exports = {
selected: {
note: '1a',
category: '1c',
type: 'notes',
},
favourites:[
'1a'
],
todos:[
],
notes: [
{
created_at: Date.now(),
updated_at: Date.now(),
key: '1n',
category: '1c',
trashed_at: false,
title: 'A New Hope',
description: 'A short and sweet description would not harm this note',
content: '## Double click here to start writing'
},
{
created_at: Date.now(),
updated_at: Date.now(),
key: '2n',
trashed_at: false,
category: '2c',
title: 'Obi Wan Kenobi',
description: 'The Force will be with you. Always',
content: '## Double click here to start writing'
},
{
created_at: Date.now(),
updated_at: Date.now(),
key: '3n',
trashed_at: false,
category: '3c',
title: 'Yoda',
description: 'When gone am I, the last of the Jedi will you be.',
content: ' The Force runs strong in your family. Pass on what you have learned.'
}
],
categories: [
{
key: '1c',
title: 'A new hope',
disabled: true,
trashed_at: false,
created_at: Date.now(),
updated_at: Date.now()
},
{
key: '2c',
title: 'Empite Strikes Back',
disabled: true,
trashed_at: false,
created_at: Date.now(),
updated_at: Date.now()
},
{
key: '3c',
title: 'The Return of the Jedi',
disabled: true,
trashed_at: false,
created_at: Date.now(),
updated_at: Date.now()
}
]
}