React-App für Todoliste aus Beispiel aus der Ellmann-Vorlesung und der ursprünglichen Todo-App zusammengebastelt

This commit is contained in:
2026-07-14 14:26:09 +02:00
parent d18af0ddf1
commit 9680fd3d39
6 changed files with 130 additions and 242 deletions
+8 -9
View File
@@ -1,13 +1,12 @@
<!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" />
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>react-todolist</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>