Skip to content
Snippets Groups Projects
Select Git revision
  • a13e6f066c71d55a1aaa570e3924a548acae6aef
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

App.swift

Blame
  • App.swift 262 B
    import ComposableArchitecture
    import SwiftUI
    
    @main
    struct App: SwiftUI.App {
      var body: some Scene {
        WindowGroup {
          AppView(store: Store(
            initialState: AppState(),
            reducer: appReducer,
            environment: .live()
          ))
        }
      }
    }