Packages

A Phoenix LiveView component library for rendering interactive calendars. This library builds on EventCalendar by Vlad Kurko: https://github.com/vkurko/calendar/ Thanks to the EventCalendar project for providing a lightweight, flexible calendar core.

Current section

Files

Jump to
calendar_component lib calendar_component.ex
Raw

lib/calendar_component.ex

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