mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
* New tutorial: Building SyncUps. * fix * clean up * wip * wip * wip * wip * wip --------- Co-authored-by: Stephen Celis <stephen@stephencelis.com>
12 lines
138 B
Swift
12 lines
138 B
Swift
import ComposableArchitecture
|
|
import SwiftUI
|
|
|
|
@Reducer
|
|
struct App {
|
|
@Reducer
|
|
enum Path {
|
|
case detail(SyncUpDetail)
|
|
}
|
|
// ...
|
|
}
|