11 lines
147 B
Elixir
11 lines
147 B
Elixir
defmodule AppWeb.HelloHTML do
|
|
use AppWeb, :html
|
|
embed_templates "hello_html/*"
|
|
|
|
def index(assigns) do
|
|
~H"""
|
|
Hello!
|
|
"""
|
|
end
|
|
end
|