-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.33 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>iter</title>
<meta name="description" content="Prompt Engineer's Playground" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>♾️</text></svg>"
/>
</head>
<body>
<div id="root"></div>
<dialog>
<settings-element></settings-element>
</dialog>
<dialog id="dynamic-dialog"></dialog>
<dialog class="fullscreen">
<artifact-editor-element>
<form id="artifact-menu" class="artifact-menu" method="dialog">
<button type="submit">Done</button>
<button type="button" data-action="run">Run</button>
<button type="button" class="copy" data-action="copy">
<span class="ready">Copy</span>
<span class="success">✅ Copied</span>
</button>
<button type="button" data-action="save">Download</button>
</form>
<code-editor-element class="artifact-code" data-tab-indent></code-editor-element>
<artifact-preview></artifact-preview>
</artifact-editor-element>
</dialog>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>