Move components into folder

This commit is contained in:
2024-10-20 22:30:37 +02:00
parent 2fb5ebbfdd
commit 102a526109
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
defmodule MihainatorWeb.ResultComponent do
@moduledoc false
use Phoenix.LiveComponent
@impl true
def update(assigns, socket) do
socket = assign(socket, assigns)
{:ok, socket}
end
@impl true
def mount(socket) do
{:ok, socket}
end
end