-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
28 lines (28 loc) · 970 Bytes
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Web components example - Seam React Components</title>
</head>
<body>
<main>
<seam-connect-account-button
publishable-key="%SEAM_PUBLISHABLE_KEY%"
user-identifier-key="%SEAM_USER_IDENTIFIER_KEY%"
disable-css-injection="true"
></seam-connect-account-button>
<seam-device-table
publishable-key="%SEAM_PUBLISHABLE_KEY%"
user-identifier-key="%SEAM_USER_IDENTIFIER_KEY%"
disable-css-injection="true"
></seam-device-table>
<seam-supported-device-table
publishable-key="%SEAM_PUBLISHABLE_KEY%"
user-identifier-key="%SEAM_USER_IDENTIFIER_KEY%"
disable-css-injection="true"
></seam-supported-device-table>
</main>
<script type="module" src="/web-components/src/main.ts"></script>
</body>
</html>