This commit is contained in:
2025-03-01 22:40:33 +08:00
parent e9c1a1ca1e
commit e1f4584be4
21 changed files with 12270 additions and 62 deletions

View File

@ -8,4 +8,17 @@
<body>
<div id="root"></div>
</body>
<script>
function increment() {
var amount = document.getElementById("amount");
amount.value = parseInt(amount.value) + 1;
}
function decrement() {
var amount = document.getElementById("amount");
if (amount.value > 0) {
amount.value = parseInt(amount.value) - 1;
}
}
</script>
</html>