diff options
Diffstat (limited to 'examples/with-markdown')
-rw-r--r-- | examples/with-markdown/src/pages/index.astro | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/with-markdown/src/pages/index.astro b/examples/with-markdown/src/pages/index.astro index 6e402fb1c..b6843f3a5 100644 --- a/examples/with-markdown/src/pages/index.astro +++ b/examples/with-markdown/src/pages/index.astro @@ -32,10 +32,10 @@ const items = ['A', 'B', 'C']; ## Embed framework components - <ReactCounter:visible /> - <PreactCounter:visible /> - <VueCounter:visible /> - <SvelteCounter:visible /> + <ReactCounter client:visible /> + <PreactCounter client:visible /> + <VueCounter client:visible /> + <SvelteCounter client:visible /> ## Use Expressions @@ -43,11 +43,11 @@ const items = ['A', 'B', 'C']; ## Oh yeah... - <ReactCounter:visible> + <ReactCounter client:visible> 🤯 It's also _recursive_! ### Markdown can be embedded in any child component - </ReactCounter:visible> + </ReactCounter> ## Code |