From 43035adccc3763191d8901947a80301b2055313e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 31 May 2026 19:46:55 +0000 Subject: [PATCH 1/2] Initial plan From d67e7766a1c683aef77f42ae9696b5e66ea6cecd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 31 May 2026 19:51:48 +0000 Subject: [PATCH 2/2] docs: link Index component in list rendering intro --- src/routes/(0)concepts/(1)control-flow/(1)list-rendering.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/(0)concepts/(1)control-flow/(1)list-rendering.mdx b/src/routes/(0)concepts/(1)control-flow/(1)list-rendering.mdx index 8317c42ed..7211ee158 100644 --- a/src/routes/(0)concepts/(1)control-flow/(1)list-rendering.mdx +++ b/src/routes/(0)concepts/(1)control-flow/(1)list-rendering.mdx @@ -21,7 +21,7 @@ description: >- List rendering allows you to generate multiple elements from a collection of data, such as an array or object, where each element corresponds to an item in the collection. -When dealing with dynamic data, Solid offers two ways to render lists: the [``](/reference/components/for) and `` components. +When dealing with dynamic data, Solid offers two ways to render lists: the [``](/reference/components/for) and [``](/reference/components/index-component) components. Both of these components help you loop over data collections to generate elements, however, they both cater to different scenarios. ## ``