defmodule Paleta.Components.Body do use Phoenix.Component slot(:inner_block, doc: "Body content", required: true) def body(assigns) do ~H""" <%= render_slot(@inner_block) %> """ end end