DocsGPT/frontend/index.html

14 lines
391 B
HTML
Raw Normal View History

2023-02-07 17:57:21 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-02-09 17:21:08 +00:00
<title>DocsGPT 🦖</title>
2023-03-10 11:48:52 +00:00
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
2023-02-07 17:57:21 +00:00
</head>
<body>
2023-02-09 17:21:08 +00:00
<div id="root" class="h-screen"></div>
2023-02-07 17:57:21 +00:00
<script type="module" src="/src/main.tsx"></script>
</body>
</html>