mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 04:46:46 +08:00
285bc923b7
Co-authored-by: José Valim <jose.valim@gmail.com>
18 lines
297 B
Elixir
18 lines
297 B
Elixir
defmodule LivebookWeb.PageHelpers do
|
|
use Phoenix.Component
|
|
|
|
@doc """
|
|
Renders page title.
|
|
|
|
## Examples
|
|
|
|
<.title text="Learn" socket={@socket} />
|
|
"""
|
|
def title(assigns) do
|
|
~H"""
|
|
<h1 class="text-2xl text-gray-800 font-medium">
|
|
<%= @text %>
|
|
</h1>
|
|
"""
|
|
end
|
|
end
|