diff --git a/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte b/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte index 73a2dcc609..5cd279d7a7 100644 --- a/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte +++ b/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte @@ -18,6 +18,18 @@ Remove first thing -{#each things as thing (thing.id)} - -{/each} \ No newline at end of file +
+
+

Keyed

+ {#each things as thing (thing.id)} + + {/each} +
+ +
+

Unkeyed

+ {#each things as thing} + + {/each} +
+
\ No newline at end of file