예를 들어 App.svelte 파일과 같은 경로에 MyView.svelte 파일이 있고, 코드는 다음과 같을 때
/my-svelte-project/src/MyView.svelte
<main>
저는 MyView 컴포넌트입니다. 반가워요~!
</main>
App.svelte 코드에서는 아래와 같이 MyView.svelte 파일을 임포트합니다.
예제 코드 /my-svelte-project/src/App.svelte 파일의 스크립트 블록
<script>
import MyView from "./MyView.svelte";
export let name;
</script>
<main>
<h1>Hello {name}!</h1>
<p>Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
<MyView/>
</main>
… 생략 …