mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
* Add withValue to Shared, deprecate direct mutation. * updates * wip * wip * wip * wip * Available noasync * withLock * clean up * wip * wip * Update SyncUpsListTests.swift * wip * wip * wip * wip * wip --------- Co-authored-by: Stephen Celis <stephen@stephencelis.com>
19 lines
307 B
Swift
19 lines
307 B
Swift
import ComposableArchitecture
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SyncUpsApp: App {
|
|
@MainActor
|
|
static let store = Store(initialState: SyncUpsList.State()) {
|
|
SyncUpsList()
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
NavigationStack {
|
|
SyncUpsListView(store: Self.store)
|
|
}
|
|
}
|
|
}
|
|
}
|