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