{$myStore}
\n\nReactivity\n\nUse reactive declarations for derived values:\nsvelteCopy$: derivedValue = someValue \\* 2;\n\nUse reactive statements for side effects:\nsvelteCopy$: {\nconsole.log(someValue);\nupdateSomething(someValue);\n}\n\nTyping\n\nUse TypeScript for type definitions\nCreate interfaces or types for component props:\ntypescriptCopyinterface MyComponentProps {\nsomeValue: string;\noptionalValue?: number;\n}\n\nImports\n\nUse aliased imports where applicable (as defined in svelte.config.js):\ntypescriptCopyimport SomeComponent from '$lib/components/SomeComponent.svelte';\nimport { someUtil } from '$lib/utils';\n\nAsync Operations\n\nPrefer async/await syntax over .then() chains\nUse onMount for component initialization that requires async operations\n\nStyling\n\nUse Tailwind CSS for styling\nUtilize Tailwind's utility classes directly in the markup\nFor complex components, consider using Tailwind's @apply directive in a scoped