summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src/pages/index.astro
blob: 3fc3ef0293def5ad0502de0da70262384dab0c21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
import Lorem from '../components/Lorem.astro';
import '../components/Test.js';
import '../components/Counter.js';
---

<!doctype html>
<html lang="en">
<head>
    <title>Demo</title>
</head>
<body>
    <h1>Test app</h1>

    <my-counter client:load />

    <Lorem />    

    <calc-add num={33} />
</body>
</html>