diff options
Diffstat (limited to 'examples/framework-preact/src/pages/index.astro')
-rw-r--r-- | examples/framework-preact/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/framework-preact/src/pages/index.astro b/examples/framework-preact/src/pages/index.astro index b37295d7b..639fed70c 100644 --- a/examples/framework-preact/src/pages/index.astro +++ b/examples/framework-preact/src/pages/index.astro @@ -5,7 +5,7 @@ import Counter from '../components/Counter'; import { signal } from '@preact/signals'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ const count = signal(0); --- |