livebook/lib/livebook_web/live/page_helpers.ex
2022-09-02 22:06:22 +02:00

18 lines
299 B
Elixir

defmodule LivebookWeb.PageHelpers do
use Phoenix.Component
@doc """
Renders page title.
## Examples
<.title text="Explore" socket={@socket} />
"""
def title(assigns) do
~H"""
<h1 class="text-2xl text-gray-800 font-medium">
<%= @text %>
</h1>
"""
end
end