// // yanaApp.swift // yana // // Created by P on 2025/4/21. // import SwiftUI import ComposableArchitecture @main struct yanaApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { WindowGroup { ContentView( store: Store( initialState: LoginFeature.State() ) { LoginFeature() }, initStore: Store( initialState: InitFeature.State() ) { InitFeature() }, configStore: Store( initialState: ConfigFeature.State() ) { ConfigFeature() } ) } } }