diff options
Diffstat (limited to 'examples/framework-alpine/src')
-rw-r--r-- | examples/framework-alpine/src/pages/index.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/framework-alpine/src/pages/index.astro b/examples/framework-alpine/src/pages/index.astro index 26987837d..7e0fc33ee 100644 --- a/examples/framework-alpine/src/pages/index.astro +++ b/examples/framework-alpine/src/pages/index.astro @@ -1,6 +1,6 @@ --- // Component Imports -import Counter from "../components/Counter.astro"; +import Counter from '../components/Counter.astro'; // Full Astro Component Syntax: // https://docs.astro.build/core-concepts/astro-components/ @@ -24,7 +24,7 @@ import Counter from "../components/Counter.astro"; <!-- Load AlpineJS on the page --> <script> - import Alpine from "alpinejs"; + import Alpine from 'alpinejs'; Alpine.start(); </script> </head> |