Files
SwiftUI/Other Projects/Tempus RomanumIl/TempusRomanum/Home.swift
2019-07-08 11:08:29 +01:00

21 lines
336 B
Swift
Executable File

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