mirror of
https://github.com/fergalmoran/malarkey.git
synced 2025-12-22 09:48:46 +00:00
20 lines
616 B
Plaintext
20 lines
616 B
Plaintext
|
|
<main class="px-4 py-4 sm:px-6 lg:px-8">
|
|
<div class="max-w-2xl mx-auto">
|
|
<.flash kind={:info} title="Success!" flash={@flash} />
|
|
<.flash kind={:error} title="Error!" flash={@flash} />
|
|
<.flash
|
|
id="disconnected"
|
|
kind={:error}
|
|
title="We can't find the internet"
|
|
close={false}
|
|
autoshow={false}
|
|
phx-disconnected={show("#disconnected")}
|
|
phx-connected={hide("#disconnected")}
|
|
>
|
|
Attempting to reconnect <%= Heroicons.icon("arrow-path", type: "solid", class: "inline w-3 h-3 ml-1 animate-spin") %> />
|
|
</.flash>
|
|
<%= @inner_content %>
|
|
</div>
|
|
</main>
|