chiya/lib/chiya_web/controllers/note_html.ex

14 lines
247 B
Elixir
Raw Normal View History

2023-03-05 17:23:16 +01:00
defmodule ChiyaWeb.NoteHTML do
use ChiyaWeb, :html
embed_templates "note_html/*"
@doc """
Renders a note form.
"""
attr :changeset, Ecto.Changeset, required: true
attr :action, :string, required: true
def note_form(assigns)
end