server/lib/reaproche_web/live/page_view_live.ex
Rodolphe Marbot c6c3d20cac first vue
2022-07-05 20:49:49 +02:00

6 lines
133 B
Elixir

defmodule ReaprocheWeb.PageViewLive do
use ReaprocheWeb, :live_view
def mount(_params, _, socket) do
{:ok, socket}
end
end