a post-component library for building user-interfaces on the web.
at main 32 lines 932 B view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <link rel="icon" type="image/svg+xml" href="data:" /> 7 <title>TodoMVC: dhtml</title> 8 <script type="importmap"> 9 { 10 "imports": { 11 "dhtml": "./node_modules/dhtml/index.js", 12 "dhtml/client": "./node_modules/dhtml/client.js" 13 } 14 } 15 </script> 16 <script type="module" src="main.js"></script> 17 <link rel="stylesheet" href="https://unpkg.com/todomvc-app-css/index.css" /> 18 <link rel="stylesheet" href="https://unpkg.com/todomvc-common/base.css" /> 19 <style> 20 ::view-transition-group(root) { 21 animation: none; 22 } 23 </style> 24 </head> 25 <body> 26 <section class="todoapp" id="root"></section> 27 <footer class="info"> 28 <p>Double-click to edit a todo</p> 29 <p>An unofficial reimplementation of <a href="http://todomvc.com">TodoMVC</a></p> 30 </footer> 31 </body> 32</html>