defmodule PyrauiWeb.DocsLive.TimelineDocs do use PyrauiWeb, :html def render(assigns) do ~H"""

Timeline

Timeline component for displaying chronological events or activities with support for nested/collapsible events.

Basic Timeline


              <.timeline id="events-timeline" items={@events} />
            

Nested Events with Collapsible


              <.timeline
                id="nested-timeline"
                items={@events}
                collapsible={true}
                default_expanded={true}
              />
            

Horizontal Timeline

""" end end