summaryrefslogtreecommitdiff
path: root/lib/lsg_web/components/message_component.ex
blob: 238141129a5286bb86f876ef4df55d6459292cc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
defmodule LSGWeb.MessageComponent do
  use Phoenix.Component

  def content(assigns) do
    ~H"""
    <div class="inline-block flex-grow cursor-default"><%= @text %></div>
    """
  end

end