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
+17
View File
@@ -0,0 +1,17 @@
import SwiftUI
struct ContentView : View {
var body: some View {
TimeTravelView(initialState: TodoState()) {
TodoListView()
}
}
}
#if DEBUG
struct ContentView_Previews : PreviewProvider {
static var previews: some View {
ContentView()
}
}
#endif