defmodule CalendarComponent do @moduledoc """ Event Calendar Component for Phoenix LiveView. This package provides HEEx components and a client hook to render an interactive calendar backed by EventCalendar. See `LiveCalendar.Components` and the guides in the documentation for usage. """ @doc """ Hello world. ## Examples iex> CalendarComponent.hello() :world """ def hello do :world end end