CJ_Clippy 8b8de3b072
Some checks failed
ci / build (push) Has been cancelled
phoenix integration begin
2025-01-03 06:45:35 -08:00

14 lines
232 B
Elixir

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