bones73k/lib/bones73k_web/live/user_dashboard_live.ex

19 lines
357 B
Elixir
Raw Normal View History

2021-02-24 07:49:39 -05:00
defmodule Bones73kWeb.UserDashboardLive do
use Bones73kWeb, :live_view
2020-09-14 11:21:48 -04:00
@impl true
def mount(_params, session, socket) do
socket = assign_defaults(socket, session)
2020-09-14 11:21:48 -04:00
{:ok, socket}
end
@impl true
def render(assigns) do
~L"""
<section class="phx-hero">
<h1>Welcome to the user dashboard!</h1>
</section>
"""
end
end