refactor: move frontend code into view

This commit is contained in:
syntaxbullet
2026-07-02 22:50:58 +02:00
parent f9ec3e5528
commit 64838e85ba
11 changed files with 8 additions and 6 deletions

12
view/index.html Normal file
View File

@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image Studio</title>
<script type="module" src="./frontend.tsx" async></script>
</head>
<body>
<div id="root"></div>
</body>
</html>