Skip to content

Instantly share code, notes, and snippets.

@shobhitchittora
Created July 22, 2018 11:24
Show Gist options
  • Save shobhitchittora/061747341821af612dcf01b3dbd1d15f to your computer and use it in GitHub Desktop.
Save shobhitchittora/061747341821af612dcf01b3dbd1d15f to your computer and use it in GitHub Desktop.
Todo App Json db
{
"todos": [
{
"id": 1,
"name": "Get eggs!",
"done": false
},
{
"id": 2,
"name": "Learn something new.",
"done": true
},
{
"id": 3,
"name": "Exercise.",
"done": false
},
{
"id": 4,
"name": "Go to work.",
"done": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment