Files
SwiftUI/Examples/Tempus RomanumIl/TempusRomanum/Home.swift
Ivan Vorobei 5b758db8cd Add projects
2019-06-07 08:56:26 +03:00

20 lines
312 B
Swift
Executable File

// Copyright © 2019 Poikile Creations. All rights reserved.
import SwiftUI
struct Home : View {
var body: some View {
VStack {
Text("Hello World")
}
}
}
#if DEBUG
struct Home_Previews : PreviewProvider {
static var previews: some View {
Home()
}
}
#endif