another.im-ios/Monal/another.im/AnotherIMApp.swift

17 lines
301 B
Swift
Raw Normal View History

2024-11-19 14:19:28 +00:00
import SwiftfulRouting
2024-11-18 14:53:52 +00:00
import SwiftUI
@main
struct AnotherIMApp: App {
2024-11-19 12:59:22 +00:00
@StateObject var wrapper = MonalXmppWrapper()
2024-11-18 14:53:52 +00:00
var body: some Scene {
WindowGroup {
2024-11-19 14:19:28 +00:00
RouterView { _ in
RootView()
}
.environmentObject(wrapper)
2024-11-18 14:53:52 +00:00
}
}
}