diff --git a/guides/architecture/architecture.md b/guides/architecture/architecture.md index e0fb10b7a..6698afa62 100644 --- a/guides/architecture/architecture.md +++ b/guides/architecture/architecture.md @@ -2,14 +2,14 @@ ```mermaid flowchart TD - LV[LiveView] + LV[LiveView] LV --> LSC[LiveSessionCoordinator] LSC --> |/route1| LVC1[LiveViewCoordinator 1] LSC --> |/route2| LVC2[LiveViewCoordinator 2] LSC --> |/route3| LVC3[LiveViewCoordinator 3] ``` -## [`LiveView`](https://github.com/liveview-native/liveview-client-swiftui/blob/main/Sources/LiveViewNative/LiveView.swift) +## [`LiveView`](https://github.com/liveview-native/liveview-client-swiftui/blob/main/Sources/LiveViewNative/Live/LiveView.swift) The `LiveView` struct is a SwiftUI View that connects to a Phoenix LiveView application. This View can be included anywhere in a SwiftUI View hierarchy. ## [`LiveSessionCoordinator`](https://github.com/liveview-native/liveview-client-swiftui/blob/main/Sources/LiveViewNative/Coordinators/LiveSessionCoordinator.swift)