diff options
author | 2022-11-08 18:39:22 +0000 | |
---|---|---|
committer | 2022-11-08 18:39:22 +0000 | |
commit | dcdeca56acb6c03d4868ece51ef4611e7598e270 (patch) | |
tree | f8731cc4f82f335c00a4a9a7f4b573d277b84a3e /examples/framework-lit/src/pages/index.astro | |
parent | 0dcdc6fb1e6160c8a225a65c4810f565e2b673b5 (diff) | |
download | astro-dcdeca56acb6c03d4868ece51ef4611e7598e270.tar.gz astro-dcdeca56acb6c03d4868ece51ef4611e7598e270.tar.zst astro-dcdeca56acb6c03d4868ece51ef4611e7598e270.zip |
[ci] format
Diffstat (limited to 'examples/framework-lit/src/pages/index.astro')
-rw-r--r-- | examples/framework-lit/src/pages/index.astro | 10 |
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 d193842a0..55d051cc0 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! - * @ts-expect-error */} + { + /** + * 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> </html> |