summaryrefslogtreecommitdiff
path: root/examples/framework-alpine/src
diff options
context:
space:
mode:
authorGravatar Marcus Otterström <github@otterstrom.dev> 2022-07-08 22:08:32 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-08 22:08:32 +0200
commit59e8c71786fd1c154904b3fefa7d26d88f4d92d2 (patch)
tree3a352e838b25a402c608913aeca21f471d75a826 /examples/framework-alpine/src
parent1f9e4857ff2b2cb7db89d619618cdf546cd3b3dc (diff)
downloadastro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.gz
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.zst
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.zip
Format astro files in examples (#3862)
Diffstat (limited to 'examples/framework-alpine/src')
-rw-r--r--examples/framework-alpine/src/pages/index.astro4
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 19b7e6741..7517f3eb4 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";
window.Alpine = Alpine;
Alpine.start();
</script>