Skip to content

Instantly share code, notes, and snippets.

@Georgegriff
Created January 10, 2022 10:34
Show Gist options
  • Save Georgegriff/f9cb5264d0cabf7b8752760487863c4b to your computer and use it in GitHub Desktop.
Save Georgegriff/f9cb5264d0cabf7b8752760487863c4b to your computer and use it in GitHub Desktop.
react mutations blog post - todos
{
"todos": [
{
"id": 1,
"message": "Go to the supermarket",
"done": false
},
{
"id": 2,
"message": "Mow the lawn",
"done": true
},
{
"id": 3,
"message": "Clean the kitchen",
"done": true
},
{
"id": 4,
"message": "Book restaurant reservation",
"done": false
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment