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