summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2022-08-06 04:39:26 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-08-06 04:39:26 +0000
commit4de35f3b703db52f51463769e3aef4b23d2864e3 (patch)
treec6fea68d6368cf8ddfb098ac3159be71f265692a /examples/with-tailwindcss/src
parent24c8e7d853aa34aaa01204f715901c2610bfd9d6 (diff)
downloadastro-4de35f3b703db52f51463769e3aef4b23d2864e3.tar.gz
astro-4de35f3b703db52f51463769e3aef4b23d2864e3.tar.zst
astro-4de35f3b703db52f51463769e3aef4b23d2864e3.zip
[ci] format
Diffstat (limited to 'examples/with-tailwindcss/src')
-rw-r--r--examples/with-tailwindcss/src/components/Button.astro4
-rw-r--r--examples/with-tailwindcss/src/pages/index.astro2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/with-tailwindcss/src/components/Button.astro b/examples/with-tailwindcss/src/components/Button.astro
index 70962e801..ef7af656b 100644
--- a/examples/with-tailwindcss/src/components/Button.astro
+++ b/examples/with-tailwindcss/src/components/Button.astro
@@ -10,6 +10,6 @@
</button>
<script>
- import confetti from "canvas-confetti";
- document.body.querySelector("button").addEventListener("click", () => confetti());
+ import confetti from 'canvas-confetti';
+ document.body.querySelector('button').addEventListener('click', () => confetti());
</script>
diff --git a/examples/with-tailwindcss/src/pages/index.astro b/examples/with-tailwindcss/src/pages/index.astro
index 651a47fa3..ebccafa34 100644
--- a/examples/with-tailwindcss/src/pages/index.astro
+++ b/examples/with-tailwindcss/src/pages/index.astro
@@ -1,6 +1,6 @@
---
// Component Imports
-import Button from "../components/Button.astro";
+import Button from '../components/Button.astro';
// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/