difftastic/sample_files/elixir_1.ex

14 lines
185 B
Elixir

defmodule ExampleComponent do
defp greet do
"Hello world"
end
def greet_component(assigns) do
~H"""
<p class="title">
<%= greet() %>
</p>
"""
end
end