aboutsummaryrefslogtreecommitdiff
path: root/iTexSnip/DetailedSnippetView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'iTexSnip/DetailedSnippetView.swift')
-rw-r--r--iTexSnip/DetailedSnippetView.swift18
1 files changed, 18 insertions, 0 deletions
diff --git a/iTexSnip/DetailedSnippetView.swift b/iTexSnip/DetailedSnippetView.swift
new file mode 100644
index 0000000..bcf9ece
--- /dev/null
+++ b/iTexSnip/DetailedSnippetView.swift
@@ -0,0 +1,18 @@
+//
+// DetailedSnippetView.swift
+// iTexSnip
+//
+// Created by Navan Chauhan on 10/21/24.
+//
+
+import SwiftUI
+
+struct DetailedSnippetView: View {
+ var body: some View {
+ Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
+ }
+}
+
+#Preview {
+ DetailedSnippetView()
+}