forked from aptera/ReactBoilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
51 lines (51 loc) · 1.12 KB
/
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
50
51
{
"articles": [
{
"id": "1",
"title": "Article One YAY",
"date": "01/01/2018",
"authorId": "2",
"body": "This is an article about Ones's"
},
{
"id": "2",
"title": "Article Two",
"date": "01/05/2018",
"authorId": "3",
"body": "This is an article about Two's"
},
{
"id": "3",
"title": "Article Three",
"date": "02/06/2018",
"authorId": "1",
"body": "This is an article about Three's"
}
],
"authors": [
{
"id": "1",
"firstName": "David",
"lastName": "Federspiel",
"website": "https://github.com/dfederspiel"
},
{
"id": "2",
"firstName": "Git",
"lastName": "Hub",
"website": "https://github.com/github"
},
{
"id": "3",
"firstName": "Matt",
"lastName": "Truty",
"website": "https://github.com/matthewtruty"
}
],
"test": [
{ "name": "David" }
],
"test2": [
{ "name": "David" }
]
}