0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/runtime/samples/transition-js-nested-component/main.html

9 lines
97 B
HTML
Raw Normal View History

2018-05-12 22:48:05 +02:00
<script>
import Widget from './Widget.html';
export let x;
</script>
{#if x}
<Widget/>
{/if}