mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
12 lines
167 B
Svelte
12 lines
167 B
Svelte
<script>
|
|
import hoistable_foo from '';
|
|
let foo;
|
|
</script>
|
|
|
|
{#each [] as x (x)}
|
|
<div animate:hoistable_foo/>
|
|
{/each}
|
|
{#each [] as x (x)}
|
|
<div animate:foo/>
|
|
{/each}
|