Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class CounterFeatureTests: XCTestCase {
// accessed from a test context:
//
// Location:
// TCATest/ContentView.swift:70
// TCATest/CounterFeature.swift:70
// Dependency:
// NumberFactClient
//
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import SwiftUI

struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
struct ContentView_Previews: PreviewProvider {
struct ContactsView_Previews: PreviewProvider {
static var previews: some View {
ContentView(
ContactsView(
store: Store(
initialState: ContactsFeature.State(
contacts: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
}

@Step {
Go to the `ContentView` that holds the view for the contacts list. Swap out the
Go to the `ContactsView` that holds the view for the contacts list. Swap out the
`NavigationStack` for a ``ComposableArchitecture/NavigationStackStore``. This is a type
specifically tuned for driving stacks from a ``ComposableArchitecture/Store``.
You hand it a store that is scoped down to ``ComposableArchitecture/StackState`` and
Expand Down