Packages
blog_component
0.1.0
BlogComponent provides several components to bootstrap a blog in an existing Phoenix LiveView project.
Current section
Files
Jump to
Current section
Files
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