slax/lib/slax_web/live/chat_room_live.ex

11 lines
169 B
Elixir
Raw Normal View History

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