-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 1.23 KB
/
index.html
File metadata and controls
23 lines (23 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='14' fill='%23161616'/%3E%3Cpath d='M18 21h28a8 8 0 0 1 8 8v2a8 8 0 0 1-8 8H31l-9 8v-8h-4a8 8 0 0 1-8-8v-2a8 8 0 0 1 8-8Z' fill='%236366f1'/%3E%3Ccircle cx='26' cy='30' r='3' fill='white'/%3E%3Ccircle cx='34' cy='30' r='3' fill='white'/%3E%3Ccircle cx='42' cy='30' r='3' fill='white'/%3E%3C/svg%3E" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="react-chorus playground for streaming AI chat UI components." />
<title>react-chorus Playground</title>
<style>
/* Reset the browser-default body margin so the 100dvh app shell does not
overflow the viewport and show a stray outer scrollbar. playground.css
also resets this, but it loads with the JS bundle — this inline copy
applies at parse time so there is no scrollbar flash before then. */
body {
margin: 0;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>