livebook/lib/livebook_web/live/page_helpers.ex

19 lines
297 B
Elixir
Raw Normal View History

defmodule LivebookWeb.PageHelpers do
use Phoenix.Component
@doc """
Renders page title.
## Examples
<.title text="Learn" socket={@socket} />
"""
def title(assigns) do
~H"""
2022-09-03 04:06:22 +08:00
<h1 class="text-2xl text-gray-800 font-medium">
<%= @text %>
</h1>
"""
end
end