defmodule SurfaceBulma.Catalogue.Dropdown.Example01 do @moduledoc """ Example using all of the available sub-components. """ use Surface.Catalogue.LiveExample, subject: SurfaceBulma.Dropdown, catalogue: SurfaceBulma.Catalogue, height: "480px", title: "All Sub-Components" alias SurfaceBulma.Dropdown alias SurfaceBulma.Icon alias SurfaceBulma.Link def render(assigns) do ~F""" <:trigger>Current Item Item 1 Item 2 Item 3

You can insert any type of content within the dropdown menu.

""" end end