Packages
heex_primitives
0.0.1
A collection of HEEx primitives for building web components in Elixir
Current section
Files
Jump to
Current section
Files
lib/heex_primitives.ex
defmodule HeexPrimitives do
@moduledoc """
Documentation for `HeexPrimitives`.
"""
@doc """
Hello world.
## Examples
iex> HeexPrimitives.hello()
:world
"""
def hello do
:world
end
end