-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
49 lines (49 loc) · 846 Bytes
/
db.json
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
{
"notes": [
{
"id": 1,
"content": "HTML is easy",
"important": false
},
{
"id": 2,
"content": "Browser can execute only JavaScript",
"important": false
},
{
"id": 3,
"content": "GET and POST are the most important methods of HTTP protocol",
"important": true
},
{
"content": "Vamos ver!",
"important": false,
"id": 4
},
{
"content": "Vamos ver!",
"important": true,
"id": 5
},
{
"content": "Vamos ver!",
"important": false,
"id": 6
},
{
"content": "Vamos ver!2",
"important": true,
"id": 7
},
{
"content": "testando",
"important": false,
"id": 8
},
{
"content": "testando2",
"important": true,
"id": 9
}
]
}