Add projects

This commit is contained in:
Ivan Vorobei
2019-06-07 08:56:26 +03:00
parent f1382c2bca
commit 5b758db8cd
117 changed files with 5413 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// 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