MDX Tests: Astro & Svelte 5 & Canvas
Nov 10, 2024 · 1 min read
Lazy-Loading Svelte Component (with Astro wrapper)
import LazyLoadDemo from '@components/Notes/Examples/LazyLoadDemo.astro';
nstantiate
<LazyLoadDemo />
▶ Interactive feature — view on fubits.dev
Simple Svelte 5 Component
import DynamicCssBefore from '@components/Notes/Examples/DynamicCssBefore.svelte';
instantiate
<DynamicCssBefore client:visible />
▶ Interactive feature — view on fubits.dev
Simple Svelte 5 Component (SVG)
import SvgOffsetPath from '@components/Notes/Examples/SvgOffsetPath.svelte';
instantiate
<SvgOffsetPath client:visible />
▶ Interactive feature — view on fubits.dev
Svelte 5 Component with Children
import CanvasDotplot from '@components/Notes/Examples/CanvasDotplot.svelte';
instantiate
<CanvasDotplot client:only="svelte">
<div>
<h4>
<code>Astro Children</code>
</h4>
</div>
</CanvasDotplot>
> ▶ **Interactive feature** — [view on fubits.dev](https://fubits.dev/notes/2024-11-10-astro-svelte-5-mdx-tests/)
Legacy Svelte 3/4 Component mixed with Svelte 5 Components
import Layers from '@components/Notes/Examples/Layers.svelte';
instantiate
<Layers client:visible />
▶ Interactive feature — view on fubits.dev
Did you enjoy this article?
Recommend it — Standard Reader surfaces well-loved writing to more readers across the network.