mirror of
https://github.com/algora-io/tv.git
synced 2025-02-14 01:59:50 +02:00
* remove unused stuff * remove more unused stuff * clean up * remove more unused stuff * render ChatLive on /:channel/chat * handle no video case * simplify * subscribe to new room on new livestream * show flash message on new livestream * add flash with action * handle no existing video case
16 lines
467 B
Plaintext
16 lines
467 B
Plaintext
<!-- Main column -->
|
|
<div class="flex flex-col w-0 flex-1 overflow-hidden">
|
|
<.flash flash={@flash} kind={:info} />
|
|
<.flash flash={@flash} kind={:note} />
|
|
<.flash flash={@flash} kind={:error} />
|
|
<.connection_status>
|
|
Re-establishing connection...
|
|
</.connection_status>
|
|
|
|
<.live_component module={AlgoraWeb.LayoutComponent} id="layout" />
|
|
|
|
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none">
|
|
<%= @inner_content %>
|
|
</main>
|
|
</div>
|