summaryrefslogtreecommitdiff
path: root/Xmission/ContentView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Xmission/ContentView.swift')
-rw-r--r--Xmission/ContentView.swift26
1 files changed, 26 insertions, 0 deletions
diff --git a/Xmission/ContentView.swift b/Xmission/ContentView.swift
new file mode 100644
index 0000000..0487cfa
--- /dev/null
+++ b/Xmission/ContentView.swift
@@ -0,0 +1,26 @@
+//
+// ContentView.swift
+// Xmission
+//
+// Created by Christian Segundo Guevara on 11/6/23.
+//
+
+import SwiftUI
+
+struct ContentView: View {
+ var body: some View {
+ VStack {
+ Image(systemName: "globe")
+ .imageScale(.large)
+ .foregroundColor(.accentColor)
+ Text("Hello, world!")
+ }
+ .padding()
+ }
+}
+
+struct ContentView_Previews: PreviewProvider {
+ static var previews: some View {
+ ContentView()
+ }
+}