summaryrefslogtreecommitdiff
path: root/examples/framework-svelte/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-svelte/src/pages/index.astro')
-rw-r--r--examples/framework-svelte/src/pages/index.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/framework-svelte/src/pages/index.astro b/examples/framework-svelte/src/pages/index.astro
index b89e12b4a..15d93bbaa 100644
--- a/examples/framework-svelte/src/pages/index.astro
+++ b/examples/framework-svelte/src/pages/index.astro
@@ -33,9 +33,9 @@ import Counter from '../components/Counter.svelte'
</head>
<body>
<main>
- <Counter:visible>
+ <Counter client:visible>
<h1>Hello Svelte!</h1>
- </Counter:visible>
+ </Counter>
</main>
</body>
</html>