-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdb.json
More file actions
59 lines (59 loc) · 1011 Bytes
/
db.json
File metadata and controls
59 lines (59 loc) · 1011 Bytes
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
{
"cafes": [
{
"title": "글 제목 수정!!!",
"content": "글내용22\n\n수정합니다.",
"writer": "작성자2",
"id": 1
},
{
"title": "React SPA 를 학습하자",
"content": "라우터가 유용하네요",
"writer": "김구라",
"id": 9
},
{
"title": "ㅌㅌㅌ",
"content": "ㅌㅌㅌ",
"writer": "ㅌㅌㅌ",
"id": 10
}
],
"posts": [
{
"title": "xxx",
"id": 3
},
{
"title": "aaa",
"author": "김구라",
"id": 6
},
{
"title": "react 공부",
"author": "acorn",
"id": 7
},
{
"title": "react 공부",
"author": "acorn",
"id": 8
}
],
"comments": [],
"profile": {
"name": "typicode"
},
"todos": [
{
"id": 1,
"title": "Read SitePoint article",
"complete": false
},
{
"id": 3,
"title": "Make restaurant reservation",
"complete": false
}
]
}