svelte/site/content/examples/immutable/data.json5

8 lines
170 B

{
todos: [
{ id: 1, done: true, text: "wash the car" },
{ id: 2, done: false, text: "take the dog for a walk" },
{ id: 3, done: false, text: "mow the lawn" }
]
}