aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2023-12-16 18:30:40 -0700
committerNavan Chauhan <navanchauhan@gmail.com>2023-12-16 18:30:40 -0700
commitdd94f794224e9527ef410956934e9fc70afe53d9 (patch)
treeaa112edbf17d7be11737887277a930a833203af6
parent373646f6611e92525c605d3fb3d1d462b0a4cfd5 (diff)
v0.9.1
-rw-r--r--iGopherBrowser/BrowserView.swift18
1 files changed, 18 insertions, 0 deletions
diff --git a/iGopherBrowser/BrowserView.swift b/iGopherBrowser/BrowserView.swift
new file mode 100644
index 0000000..31e6dcb
--- /dev/null
+++ b/iGopherBrowser/BrowserView.swift
@@ -0,0 +1,18 @@
+//
+// BrowserView.swift
+// iGopherBrowser
+//
+// Created by Navan Chauhan on 12/16/23.
+//
+
+import SwiftUI
+
+struct BrowserView: View {
+ var body: some View {
+ Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
+ }
+}
+
+#Preview {
+ BrowserView()
+}