defmodule LiveBeatsWeb.HomeLive do use LiveBeatsWeb, :live_view def render(assigns) do ~H""" <.title_bar> LiveBeats - Chill <:action>Share <:action primary phx-click={show_modal("add-songs")}>Add Songs <.modal id="add-songs"> <:title>Add Songs a modal <:cancel>Close <:confirm>Add

Who's Here

Projects

""" end def mount(_parmas, _session, socket) do {:ok, socket} end end