18 lines
519 B
Text
18 lines
519 B
Text
<main>
|
|
<div>
|
|
<.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.arrow_path class="ml-1 w-3 h-3 inline animate-spin" />
|
|
</.flash>
|
|
{@inner_content}
|
|
</div>
|
|
</main>
|