blob: b3ddba639ef1112f0c36dc9e0a5f7f7dea1655c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import PragmaComponent from '../components/PragmaComment.jsx';
import PragmaComponentTypeScript from '../components/PragmaCommentTypeScript.tsx';
---
<html>
<head>
<title>React component works with Pragma comment</title>
</head>
<body>
<PragmaComponent client:load/>
<PragmaComponentTypeScript client:load/>
</body>
</html>
|