I\'m hoping to find a way to iterate over an #each block a set amount of times in Svelte 3. In Vue I would do something like this:
You can use {#each ...}, like:
{#each ...}
{#each Array(3) as _, i} {i + 1} {/each}