Add Time Travel

This commit is contained in:
Ivan Vorobei
2019-06-06 13:54:57 +03:00
parent d49b874594
commit 838c9a51ab
24 changed files with 1122 additions and 0 deletions
@@ -0,0 +1,7 @@
import SwiftUI
struct TodoItem: Identifiable {
var id: UUID
var title: String
var isFinished: Bool
}