Skip to content
Discussion options

You must be logged in to vote
public struct SelectPlaceFeature: ReducerProtocol {
    public struct State: Equatable {
        var listViewState: ListViewFeature.State = .init(viewState: .loaded)
        var placeCellState: IdentifiedArrayOf<PlaceMapCell.State> = [.init(id: .zero, place: .testValue)]
    }
    
    public enum Action: Equatable {
        case list(List)
        
        public enum List: Equatable {
            case listView(ListViewFeature.Action)
            case placeMapCell(
                id:PlaceMapCell.State.ID,
                action: PlaceMapCell.Action
            )
        }
        public enum Netowrk: Equatable {
            case load
            case handleResponse
            case erro…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by knight6700
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant