summaryrefslogtreecommitdiff
path: root/examples/component
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/component
parent1f9e4857ff2b2cb7db89d619618cdf546cd3b3dc (diff)
downloadastro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.gz
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.zst
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.zip
Format astro files in examples (#3862)
Diffstat (limited to 'examples/component')
-rw-r--r--examples/component/demo/src/pages/index.astro2
-rw-r--r--examples/component/packages/my-component/Button.astro2
-rw-r--r--examples/component/packages/my-component/Heading.astro4
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/component/demo/src/pages/index.astro b/examples/component/demo/src/pages/index.astro
index bfdf495a8..e251a69ae 100644
--- a/examples/component/demo/src/pages/index.astro
+++ b/examples/component/demo/src/pages/index.astro
@@ -1,5 +1,5 @@
---
-import * as Component from '@example/my-component';
+import * as Component from "@example/my-component";
---
<html lang="en">
diff --git a/examples/component/packages/my-component/Button.astro b/examples/component/packages/my-component/Button.astro
index 5f32ce4e8..69b3b5eb5 100644
--- a/examples/component/packages/my-component/Button.astro
+++ b/examples/component/packages/my-component/Button.astro
@@ -7,7 +7,7 @@ const { type, ...props } = {
...Astro.props,
} as Props;
-props.type = type || 'button';
+props.type = type || "button";
---
<button {...props}><slot /></button>
diff --git a/examples/component/packages/my-component/Heading.astro b/examples/component/packages/my-component/Heading.astro
index 813c0c11b..00f8926cc 100644
--- a/examples/component/packages/my-component/Heading.astro
+++ b/examples/component/packages/my-component/Heading.astro
@@ -8,8 +8,8 @@ const { level, role, ...props } = {
...Astro.props,
} as Props;
-props.role = role || 'heading';
-props['aria-level'] = level || '1';
+props.role = role || "heading";
+props["aria-level"] = level || "1";
---
<h {...props}><slot /></h>