-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (80 loc) · 2.5 KB
/
index.html
File metadata and controls
81 lines (80 loc) · 2.5 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Elements</title>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="/standard-web-components">Standard Web Components</a>
</li>
<li>
<a href="/preact-web-components">Preact Web Components</a>
</li>
</ul>
</nav>
</header>
<main>
<h1>Web Components Study</h1>
</main>
<footer>
<h2>References</h2>
<ul>
<li>
<a
href="https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootmode"
>Declarative Shadow DOM Specs</a>
</li>
<li>
<a href="https://web.dev/articles/declarative-shadow-dom"
>Declarative Shadow DOM by Jason Miller and Mason Freed</a>
</li>
<li>
<a href="https://jakelazaroff.com/words/isomorphic-web-components/"
>Isomorphic Web Components by Jake Lazaroff</a>
</li>
<li>
<a href="https://github.com/mayank99/declarative-shadow-dom"
>Utility to get Declarative Shadow Dom work in JSX</a>
</li>
<li>
<a
href="https://www.konnorrogers.com/posts/2023/what-is-declarative-shadow-dom"
>What is DSD</a>
</li>
<li>
<a href="https://12daysofweb.dev/2024/declarative-shadow-dom/">DSD</a>
</li>
<li>
<a href="https://fullystacked.net/declarative-shadow-dom/"
>Declarative Shadow DOM and issue in React</a>
</li>
<li>
<a
href="https://blog.stackademic.com/server-rendering-web-components-in-react-869c248f1df7"
>Declarative Shadow DOM and issue in SSR</a>
</li>
<li>
<a href="https://fullystacked.net/innerhtml-alternatives/"
>Some useful modern browser APIs for Web components</a>
</li>
<li>
<a href="https://github.com/solidjs/solid/issues/1834"
>Solid JS DSD issue</a>
</li>
</ul>
</footer>
</body>
</html>