Current section

Files

Jump to
exq_ui lib exq_ui_web live dashboard_live.ex
Raw

lib/exq_ui_web/live/dashboard_live.ex

defmodule ExqUIWeb.DashboardLive do
use ExqUIWeb, :live_view
@impl true
def mount(_params, _session, socket) do
{:ok, socket}
end
@impl true
def handle_params(_, _, socket) do
{:noreply, socket}
end
end