Advertisement
Geep5

data in svelte

Nov 17th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. let todos = [
  2. { id: 1, done: true, text: 'wash the car' },
  3. { id: 2, done: false, text: 'take the dog for a walk' },
  4. { id: 3, done: false, text: 'mow the lawn' }
  5. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement