Multiple LiveView. Share state across them via common socket

That makes sense I guess :smile:
I misunderstood from Chris’s message here that there is an architecture such that makes the process survive the navigation

<%= live_render(@conn, MyChatLive, ...) %> in your root layout would give you an isolated LV that survives live navigation of the main LV from the live route. We replace everything inside the main LV on navigation, so anything outside of it won’t be touched.

But that’s not what he meant probably?