slax/lib/slax_web/live/chat_room_live.ex

11 lines
169 B
Elixir

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