import ComposableArchitecture import SwiftUI @Reducer struct SyncUpDetail { @ObservableState struct State: Equatable { } enum Action { } var body: some ReducerOf { Reduce { state, action in switch action { } } } }