summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src/pages/index.astro
blob: ec4a7f73d0d69cf96b0dc8aca04caaafb7130695 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
import Lorem from '../components/Lorem.astro';
import '../components/Test.js';
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>
    <h1>Test app</h1>
    <my-counter client:load />
    <Lorem />
    <calc-add num={33} />
  </body>
</html>