summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src/pages/index.astro
blob: 78c13f2fbe937359c5cb2d1704acc1fc2385bff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
import Lorem from "../components/Lorem.astro";
import { CalcAdd } from "../components/calc-add.js";
import { MyCounter } from "../components/my-counter.js";

// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/
---

<!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>
		<MyCounter client:load />
		<Lorem />
		<CalcAdd num={33} />
	</body>
</html>