summaryrefslogtreecommitdiff
path: root/examples/with-nanostores/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/with-nanostores/src
parent1f9e4857ff2b2cb7db89d619618cdf546cd3b3dc (diff)
downloadastro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.gz
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.zst
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.zip
Format astro files in examples (#3862)
Diffstat (limited to 'examples/with-nanostores/src')
-rw-r--r--examples/with-nanostores/src/pages/index.astro12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/with-nanostores/src/pages/index.astro b/examples/with-nanostores/src/pages/index.astro
index ad3fb4e26..cedc0ac60 100644
--- a/examples/with-nanostores/src/pages/index.astro
+++ b/examples/with-nanostores/src/pages/index.astro
@@ -1,13 +1,13 @@
---
// Style Imports
-import '../styles/global.css';
-import '../styles/home.css';
+import "../styles/global.css";
+import "../styles/home.css";
// Component Imports
-import AdminsReact from '../components/AdminsReact.jsx';
-import AdminsSvelte from '../components/AdminsSvelte.svelte';
-import AdminsVue from '../components/AdminsVue.vue';
-import AdminsSolid from '../components/AdminsSolid.jsx';
+import AdminsReact from "../components/AdminsReact.jsx";
+import AdminsSvelte from "../components/AdminsSvelte.svelte";
+import AdminsVue from "../components/AdminsVue.vue";
+import AdminsSolid from "../components/AdminsSolid.jsx";
// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/