14 lines
232 B
Elixir
Raw Normal View History

2025-01-03 06:45:35 -08:00
defmodule BrightWeb.HelloHTML do
use BrightWeb, :html
embed_templates "hello_html/*"
attr :messenger, :string, required: true
def greet(assigns) do
~H"""
<h2>Hello World, from {@messenger}!</h2>
"""
end
end