breakout71/src/editor.html
2025-03-16 17:45:29 +01:00

17 lines
504 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Level editor</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔨</text></svg>"
/>
<link rel="stylesheet" href="./level_editor/levels_editor.less" />
</head>
<body>
<div id="app"></div>
<script type="module" src="./level_editor/levels_editor.tsx"></script>
</body>
</html>