#Svelte https://svelte.dev/tutorial/nested-components ```svelte <script> import Other from './other.svelte' </script> <div> <Other /> </div> ``` HTML文字列をHTMLとして反映させたい場合は`{@html HTML文字列}`を使う。