File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/ComposableArchitecture/Documentation.docc/Articles Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ struct AppView: View {
9797
9898 var body: some View {
9999 WithViewStore (self .store , observe : { $0 }) { viewStore in
100- TabView (selection : viewStore.binding (send : AppAction.tabSelected ) {
100+ TabView (selection : viewStore.binding (send : AppAction.tabSelected )) {
101101 ActivityView (
102102 store : self .store .scope (state : \.activity , action : AppAction.activity )
103103 )
@@ -126,7 +126,7 @@ the state the view needs. In this case the view only needs a single field:
126126
127127``` swift
128128WithViewStore (self .store , observe : \.selectedTab ) { viewStore in
129- TabView (selection : viewStore.binding (send : AppAction.tabSelected ) {
129+ TabView (selection : viewStore.binding (send : AppAction.tabSelected )) {
130130 // ...
131131 }
132132}
You can’t perform that action at this time.
0 commit comments