You’re talking about the core components located in your_project/lib/your_project_web/components/core_components.ex, specifically list/1 and table/1 correct? The docs aren’t online for core components because they exist in that file. The fix is what I stated above. Take <.list/> for example, the only prop it defines is a slot that takes a title string. If you want it to take an ID then you need to add an ID prop to the component like so attr :id, :string, required: true, then render it in the template: <dl id={@id} class="-my-4 divide-y divide-zinc-100">...</dl>






















