-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.2 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>React Web Component Injector</title>
<meta name="description" content="A scrollable, high-performance list component for React">
<link rel="stylesheet" href="example/styles.css">
</head>
<body>
<div class="container">
<h1>React Web Component Injector</h1>
<p>Example items</p>
<div id="app"></div>
<custom-component>1</custom-component>
<other-component>
<custom-component>3</custom-component>
<h2>
sdafdsfdsf
</h2>
</other-component>
<custom-component>2
<ul class="style1">
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<custom-component>testing
<custom-component>
<b class="style2">testing</b>
</custom-component>
<label for="test-checkbox">Test</label>
<input id="test-checkbox" type="checkbox" default-checked="true" />
</custom-component>
<div style="color: #333;font-size: 24px; margin-top: 20px;">
Inline styling
</div>
</custom-component>
</div>
<script src="example/bundle.js"></script>
</body>
</html>