Skip to content

Instantly share code, notes, and snippets.

@Ikalou
Created May 18, 2020 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ikalou/e7ddc0c1e00d55b631ec3c6557b316e1 to your computer and use it in GitHub Desktop.
Save Ikalou/e7ddc0c1e00d55b631ec3c6557b316e1 to your computer and use it in GitHub Desktop.
Test json-server
{
"posts": [
{
"id": 1,
"title": "Post 1"
},
{
"id": 2,
"title": "Post 2"
},
{
"id": 3,
"title": "Post 3"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
},
{
"id": 2,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode-ikalou"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment