Packages

A collection of HEEx primitives for building web components in Elixir

Current section

Files

Jump to
heex_primitives lib heex_primitives.ex
Raw

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