Skip to content

Instantly share code, notes, and snippets.

View chevinbrown's full-sized avatar
:shipit:

Kevin Brown chevinbrown

:shipit:
  • Remote
View GitHub Profile
@chevinbrown
chevinbrown / layout.leex
Last active January 28, 2024 08:24
Quick toast messages from flash with LiveView
<%= if assigns[:flash] && !assigns[:skip_flash] do %>
<%= render_flash(@flash) %>
<% end %>
...