blob: 5d0386b20949eca655a76a80d90d8f91cfe51a9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
defmodule NolaWeb.MessageComponent do
use Phoenix.Component
def content(assigns) do
~H"""
<NolaWeb.Component.naive_date_time_utc datetime={@message.at} format="time-24-with-seconds" />
<div class="inline-block font-bold flex-none cursor-default"><%= @message.sender.nick %></div>
<div class="inline-block flex-grow cursor-default"><%= @text %></div>
"""
end
end
|