<script>
import Layout from "./Layout.svelte";
import TextBlock from "./TextBlock.svelte";
</script>
<Layout>
<TextBlock text="xxxx" slot="text1" />
<TextBlock text="yyy" slot="text2" />
<svelte:fragment slot="img1">
img1 is here
</svelte:fragment>
</Layout>