22 lines
705 B
HTML
22 lines
705 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>dodrio • TodoMVC</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/todomvc-common@^1.0.0/base.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/todomvc-app-css@^2.0.0/index.css">
|
|
</head>
|
|
<body>
|
|
<section class="todoapp">
|
|
</section>
|
|
<footer class="info">
|
|
<p>Double-click to edit a todo</p>
|
|
</footer>
|
|
<script src="pkg/dodrio_todomvc.js"></script>
|
|
<script>
|
|
wasm_bindgen("pkg/dodrio_todomvc_bg.wasm");
|
|
</script>
|
|
</body>
|
|
</html>
|