Current section

Files

Jump to
live_view_native_html lib live_view_native html component.ex
Raw

lib/live_view_native/html/component.ex

defmodule LiveViewNative.HTML.Component do
@moduledoc false
defmacro __using__(_opts) do
quote do
import Phoenix.Component, only: [sigil_H: 2]
end
end
defmacro sigil_LVN(_doc, _modifiers) do
raise "~LVN is not supported for the HTML format. Please use ~H"
end
end