feat: add MindDump button and improve new list button

This commit is contained in:
2026-02-11 23:25:09 +01:00
parent 0754a7ff13
commit 89e149d35f
5 changed files with 48 additions and 26 deletions

View File

@@ -5,6 +5,10 @@ import Observation
class ListStore {
var lists: [TodoList]
var inboxID: UUID {
lists.first { $0.isInbox }!.id
}
init() {
self.lists = [TodoList(name: "Inbox", isInbox: true)]
}