aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()
+}