blob: ac8996504e496f7f5c1fe8938343f3d8c47a3d7e (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
---
// Style Imports
import "../styles/global.css";
// Component Imports
// For JSX components, all the common ways of exporting (under a namespace, specific export, default export etc) are supported!
import * as react from "../components/ReactCounter";
import { PreactCounter } from "../components/PreactCounter";
import SolidCounter from "../components/SolidCounter";
import VueCounter from "../components/VueCounter.vue";
import SvelteCounter from "../components/SvelteCounter.svelte";
// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
</head>
<body>
<main>
<react.Counter client:visible>
<h1>Hello from React!</h1>
</react.Counter>
<PreactCounter client:visible>
<h1>Hello from Preact!</h1>
</PreactCounter>
<SolidCounter client:visible>
<h1>Hello from Solid!</h1>
</SolidCounter>
<VueCounter client:visible>
<h1>Hello from Vue!</h1>
</VueCounter>
<SvelteCounter client:visible>
<h1>Hello from Svelte!</h1>
</SvelteCounter>
</main>
</body>
</html>
|