Packages

BlogComponent provides several components to bootstrap a blog in an existing Phoenix LiveView project.

Current section

Files

Jump to
blog_component lib blog_component.ex
Raw

lib/blog_component.ex

defmodule BlogComponent do
@moduledoc """
Documentation for `BlogComponent`.
"""
@doc """
Hello world.
## Examples
iex> BlogComponent.hello()
:world
"""
def hello do
:world
end
end