0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-30 00:46:29 +01:00
svelte/test/hydration/samples/if-block-anchor/main.svelte
2019-02-08 08:48:10 -05:00

9 lines
77 B
Svelte

<div>
{#if foo}
<p>foo!</p>
{/if}
{#if bar}
<p>bar!</p>
{/if}
</div>