summaryrefslogtreecommitdiff
path: root/Polocyte/ContentView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Polocyte/ContentView.swift')
-rw-r--r--Polocyte/ContentView.swift24
1 files changed, 24 insertions, 0 deletions
diff --git a/Polocyte/ContentView.swift b/Polocyte/ContentView.swift
new file mode 100644
index 0000000..2a2dcc7
--- /dev/null
+++ b/Polocyte/ContentView.swift
@@ -0,0 +1,24 @@
+//
+// ContentView.swift
+// Polocyte
+//
+// Created by Runxi Yu on 7/9/24.
+//
+
+import SwiftUI
+
+struct ContentView: View {
+ var body: some View {
+ VStack {
+ Image(systemName: "globe")
+ .imageScale(.large)
+ .foregroundStyle(.tint)
+ Text("Hello, world!")
+ }
+ .padding()
+ }
+}
+
+#Preview {
+ ContentView()
+}