montana/Монтана-iOS/Sources/MontanaApp/App/MontanaApp.swift

14 lines
255 B
Swift
Raw Normal View History

import SwiftUI
@main
struct MontanaApp: App {
@StateObject private var identityManager = IdentityManager()
var body: some Scene {
WindowGroup {
RootView()
.environmentObject(identityManager)
}
}
}