mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-03-17 23:13:58 +01:00
18 lines
300 B
Swift
Executable File
18 lines
300 B
Swift
Executable File
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
|