#poetry_accordion(**, &)
A vertically stacked set of interactive headings that each reveal a section of content.
poetry_accordion(open: %w[a]) do |accordion|
accordion.with_item(value: "a", title: "First") { "First panel" }
accordion.with_item(value: "b", title: "Second") { "Second panel" }
end