diff --git a/src/TwigComponent/doc/index.rst b/src/TwigComponent/doc/index.rst
index 30395484081..261a0cc659d 100644
--- a/src/TwigComponent/doc/index.rst
+++ b/src/TwigComponent/doc/index.rst
@@ -1049,10 +1049,9 @@ And in your component template you can access your embedded block
Anonymous TwigComponent
-----------------------
-Sometimes, reusable elements do not require complex logic or injected service to render what it could be processed
-from one template itself. (e.g. retrieving a customized primary button that could take a different label).
-
-No need for class. Your component matches the namespace of the file you created where components live (see `Twig Template Namespaces`_).
+Sometimes a component is simple enough that it doesn't have any complex logic or injected services.
+In this case, you can skip the class and only create the template. The component name is determined
+by the location of the template (see `Twig Template Namespaces`_):
.. code-block:: html+twig
@@ -1062,7 +1061,7 @@ No need for class. Your component matches the namespace of the file you created
{% endblock %}
-Then use your component with ``:`` to navigate through the directories:
+Then use your component with ``:`` to navigate through sub-directories (if there are any):
.. code-block:: html+twig
@@ -1071,54 +1070,84 @@ Then use your component with ``:`` to navigate through the directories:
Click Me!
-
+
-Now let's pass props to your button by defining a ``{% props %}`` tag in its view.
-It allows to declare which props are required and which have a default value.
-
-For a required prop "label", and one optional prop "primary":
+Still get all your attributes by rendering the ``attributes`` object in your template:
.. code-block:: html+twig
{# templates/components/Button.html.twig #}
- {% props label, primary = true %}
-
-