defmodule Satsuma.List do use Phoenix.Component slot :list_item, doc: "List item" do attr(:link, :string, doc: "The URI that this list item should go to when clicked") end def list(assigns) do ~H""" """ end end