chore: first liveview route

This commit is contained in:
2024-10-07 23:21:49 +00:00
parent ec3b82cd00
commit 63eff84a58
2 changed files with 12 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
defmodule SlaxWeb.ChatRoomLive do
@moduledoc false
use SlaxWeb, :live_view
def render(assigns) do
~H"""
<div>Welcome to the chat!</div>
"""
end
end