Component Structure in Svelte
From the Svelte cheat sheet ยท Setup & Basics ยท verified Jul 2026
Component Structure
Basic Svelte component anatomy
javascript
<!-- MyComponent.svelte -->
<script>
let message = 'Hello Svelte';
</script>
<h1>{message}</h1>
<style>
h1 { color: #ff3e00; }
</style>๐จ Styles are scoped to component by default
๐ No JSX - write regular HTML with enhancements
๐ TypeScript support with lang="ts" attribute
โก Components compile to efficient JavaScript