scrimba
Adventures in Svelte
Svelte - Each Block Keys
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Svelte - Each Block Keys
AboutCommentsNotes
Svelte - Each Block Keys
Expand for more info
App.svelte
run
preview
console
<script>
import Thing from './Thing.svelte';

let things = [
{ id: 1, color: '#0d0887' },
{ id: 2, color: '#6a00a8' },
{ id: 3, color: '#b12a90' },
{ id: 4, color: '#e16462' },
{ id: 5, color: '#fca636' }
];
</script>

{#each things as thing}
<Thing {thing} />
{/each}
Console
/index.html
-2:39