svelte/test/hydration/samples/each-block/main.svelte

5 lines
63 B

<ul>
{#each things as thing}
<li>{thing}</li>
{/each}
</ul>