summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2022-11-08 22:12:54 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-11-08 22:12:54 +0000
commit16abbad0b6fbd9e27aac39169bfad9d36d21ef60 (patch)
tree7e1c78e30d474077ee7d0220d2d37e8c1175adbd /examples/framework-lit/src
parent13119162f5cb84f8ffa3bf549d0e1b0955ebcea5 (diff)
downloadastro-16abbad0b6fbd9e27aac39169bfad9d36d21ef60.tar.gz
astro-16abbad0b6fbd9e27aac39169bfad9d36d21ef60.tar.zst
astro-16abbad0b6fbd9e27aac39169bfad9d36d21ef60.zip
[ci] format
Diffstat (limited to 'examples/framework-lit/src')
-rw-r--r--examples/framework-lit/src/pages/index.astro10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/framework-lit/src/pages/index.astro b/examples/framework-lit/src/pages/index.astro
index 687dc34bc..1c7b45ce8 100644
--- a/examples/framework-lit/src/pages/index.astro
+++ b/examples/framework-lit/src/pages/index.astro
@@ -20,10 +20,12 @@ import { MyCounter } from '../components/my-counter.js';
<MyCounter client:load />
<Lorem />
- {/**
- * Our VS Code extension does not currently properly typecheck attributes on Lit components
- * As such, the following code will result in a TypeScript error inside the editor, nonetheless, it works in Astro!
- */}
+ {
+ /**
+ * Our VS Code extension does not currently properly typecheck attributes on Lit components
+ * As such, the following code will result in a TypeScript error inside the editor, nonetheless, it works in Astro!
+ */
+ }
{/** @ts-expect-error */}
<CalcAdd num={0} />
</body>