Concept Flow - Component file (.svelte) anatomy
Start .svelte file
<script> block
Declare variables, functions
<style> block
Write CSS for component
HTML markup block
Use variables/functions in markup
Component ready to render
A .svelte file has three main parts: script for logic, style for CSS, and markup for HTML. They work together to create a component.