pull/4792/head
Conduitry 5 years ago
parent 592b55088c
commit c11962ab0b

@ -0,0 +1,10 @@
<script>
import Item from './Item.svelte';
const components = [];
</script>
<ul>
{#each [0, 1, 2] as item}
<Item bind:this={components[item]} />
{/each}
</ul>
Loading…
Cancel
Save