aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/iOSApp.swift
diff options
context:
space:
mode:
Diffstat (limited to 'iosApp/iosApp/iOSApp.swift')
-rw-r--r--iosApp/iosApp/iOSApp.swift10
1 files changed, 8 insertions, 2 deletions
diff --git a/iosApp/iosApp/iOSApp.swift b/iosApp/iosApp/iOSApp.swift
index 0648e86..241beca 100644
--- a/iosApp/iosApp/iOSApp.swift
+++ b/iosApp/iosApp/iOSApp.swift
@@ -1,10 +1,16 @@
import SwiftUI
+import shared
@main
struct iOSApp: App {
+
+ init() {
+ startKoin()
+ }
+
var body: some Scene {
WindowGroup {
- ContentView()
+ LoginContainerView()
}
}
-} \ No newline at end of file
+}