It's a todo list.
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

🏷️ define List type

+6
+6
src/lib/stores.svelte.ts
··· 40 40 is_completed: boolean; 41 41 } 42 42 43 + export type List = { 44 + id: string; 45 + title: string; 46 + tasks: Task[] 47 + } 48 + 43 49 export const todo_list = persisted<Task[]>("local_todo_list", []);