diff options
Diffstat (limited to 'examples/framework-lit/src')
-rw-r--r-- | examples/framework-lit/src/pages/index.astro | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/examples/framework-lit/src/pages/index.astro b/examples/framework-lit/src/pages/index.astro index 4c4ac5c10..ec4a7f73d 100644 --- a/examples/framework-lit/src/pages/index.astro +++ b/examples/framework-lit/src/pages/index.astro @@ -6,18 +6,14 @@ import '../components/Counter.js'; <!doctype html> <html lang="en"> -<head> - <link rel="icon" type="image/x-icon" href="/favicon.ico" /> - - <title>Demo</title> -</head> -<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 /> - - <Lorem /> - + <Lorem /> <calc-add num={33} /> -</body> + </body> </html> |