summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src/pages/index.astro
blob: 7f81d48e3150471fccc510dde62618c5319c83f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
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/svg+xml" href="/favicon.svg" />
    <link rel="alternate 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>