aboutsummaryrefslogtreecommitdiffstats
path: root/code/app-ios/Storage/StorageApp.swift
diff options
context:
space:
mode:
Diffstat (limited to 'code/app-ios/Storage/StorageApp.swift')
-rw-r--r--code/app-ios/Storage/StorageApp.swift17
1 files changed, 17 insertions, 0 deletions
diff --git a/code/app-ios/Storage/StorageApp.swift b/code/app-ios/Storage/StorageApp.swift
new file mode 100644
index 0000000..43a0cbc
--- /dev/null
+++ b/code/app-ios/Storage/StorageApp.swift
@@ -0,0 +1,17 @@
+//
+// StorageApp.swift
+// Storage
+//
+// Created by Ivar Løvlie on 14/11/2022.
+//
+
+import SwiftUI
+
+@main
+struct StorageApp: App {
+ var body: some Scene {
+ WindowGroup {
+ ContentView()
+ }
+ }
+}