mirror of
https://github.com/facebook/react.git
synced 2026-02-24 04:33:04 +00:00
* [Blocks Fixture] Update navigation buttons immediately * Add more profile links * Minor refactor * Add subroutes to Profile
78 lines
1.3 KiB
JSON
78 lines
1.3 KiB
JSON
{
|
|
"posts": [
|
|
{
|
|
"id": 1,
|
|
"userId": 2,
|
|
"title": "Welcome",
|
|
"body": "Hello, world!"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"userId": 3,
|
|
"title": "A Guide to useEffect",
|
|
"body": "Let me tell you everything about useEffect"
|
|
},
|
|
{
|
|
"id": 3,
|
|
"userId": 1,
|
|
"title": "Here and There",
|
|
"body": "Browsers are smart"
|
|
}
|
|
],
|
|
"comments": [
|
|
{
|
|
"id": 1,
|
|
"body": "Hey there",
|
|
"postId": 1,
|
|
"userId": 1
|
|
},
|
|
{
|
|
"id": 2,
|
|
"body": "Welcome to the chat",
|
|
"postId": 1,
|
|
"userId": 2
|
|
},
|
|
{
|
|
"id": 3,
|
|
"body": "What editor/font are you using?",
|
|
"postId": 2,
|
|
"userId": 2
|
|
},
|
|
{
|
|
"id": 4,
|
|
"body": "It's always been hard",
|
|
"postId": 3,
|
|
"userId": 1
|
|
},
|
|
{
|
|
"id": 5,
|
|
"body": "It's still easy",
|
|
"postId": 3,
|
|
"userId": 2
|
|
}
|
|
],
|
|
"users": [{
|
|
"id": 1,
|
|
"name": "Sebastian",
|
|
"bioId": 10
|
|
}, {
|
|
"id": 2,
|
|
"name": "Sophie",
|
|
"bioId": 20
|
|
}, {
|
|
"id": 3,
|
|
"name": "Dan",
|
|
"bioId": 30
|
|
}],
|
|
"bios": [{
|
|
"id": 10,
|
|
"text": "I like European movies"
|
|
}, {
|
|
"id": 20,
|
|
"text": "I like math puzzles"
|
|
}, {
|
|
"id": 30,
|
|
"text": "I like reading twitter"
|
|
}]
|
|
}
|