Created
July 22, 2018 11:24
-
-
Save shobhitchittora/061747341821af612dcf01b3dbd1d15f to your computer and use it in GitHub Desktop.
Todo App Json db
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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