diff options
Diffstat (limited to 'examples/framework-multiple')
| -rw-r--r-- | examples/framework-multiple/src/pages/index.astro | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/examples/framework-multiple/src/pages/index.astro b/examples/framework-multiple/src/pages/index.astro index a2f15764e..826a9d5f9 100644 --- a/examples/framework-multiple/src/pages/index.astro +++ b/examples/framework-multiple/src/pages/index.astro @@ -35,22 +35,22 @@ import SvelteCounter from '../components/SvelteCounter.svelte';    <body>        <main> -        <react.Counter:visible> +        <react.Counter client:visible>              <h1>Hello React!</h1>              <p>What's up?</p> -        </react.Counter:visible> +        </react.Counter> -        <PreactCounter:visible> +        <PreactCounter client:visible>            <h1>Hello Preact!</h1> -        </PreactCounter:visible> +        </PreactCounter> -        <VueCounter:visible> +        <VueCounter client:visible>              <h1>Hello Vue!</h1> -        </VueCounter:visible> +        </VueCounter> -        <SvelteCounter:visible> +        <SvelteCounter client:visible>              <h1>Hello Svelte!</h1> -        </SvelteCounter:visible> +        </SvelteCounter>          <A /> | 
