This commit is contained in:
2026-06-11 19:22:43 +07:00
commit c6192ec339
8 changed files with 1092 additions and 0 deletions

23
index.html Normal file
View File

@@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>demo_project</title>
</head>
<body>
<div id="app"></div>
<form onsubmit="myPersonalFinanceManager.addTrade(event)">
<input type="text">
<select name="" id="form_select">
<option value=""></option>
</select>
<button>Lưu Giao Dịch</button>
</form>
<script src="/src/main.ts"></script>
</body>
</html>