Files
cluedo-hp-webapp/frontend/index.html
nessi 7f216190e9 [Message]
Add initial HTML template for the frontend

Introduced a basic `index.html` file for the Cluedo Sheet project. This file sets up the document structure and links the main JavaScript file for rendering.
2026-02-03 08:27:11 +01:00

13 lines
299 B
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cluedo Sheet</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>