summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-lit/src/pages/index.astro')
-rw-r--r--examples/framework-lit/src/pages/index.astro22
1 files changed, 11 insertions, 11 deletions
diff --git a/examples/framework-lit/src/pages/index.astro b/examples/framework-lit/src/pages/index.astro
index ec4a7f73d..6b825848e 100644
--- a/examples/framework-lit/src/pages/index.astro
+++ b/examples/framework-lit/src/pages/index.astro
@@ -4,16 +4,16 @@ import '../components/Test.js';
import '../components/Counter.js';
---
-<!doctype html>
+<!DOCTYPE html>
<html lang="en">
- <head>
- <link rel="icon" type="image/x-icon" href="/favicon.ico" />
- <title>Demo</title>
- </head>
- <body>
- <h1>Test app</h1>
- <my-counter client:load />
- <Lorem />
- <calc-add num={33} />
- </body>
+ <head>
+ <link rel="icon" type="image/x-icon" href="/favicon.ico" />
+ <title>Demo</title>
+ </head>
+ <body>
+ <h1>Test app</h1>
+ <my-counter client:load></my-counter>
+ <Lorem />
+ <calc-add num={33}></calc-add>
+ </body>
</html>