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.
13 lines
299 B
HTML
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>
|