a proof of concept realtime collaborative todo list
0

Configure Feed

Select the types of activity you want to include in your feed.

atodo / index.html
388 B 14 lines
1<!doctype html> 2<html> 3 <head> 4 <meta charset="utf-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 <title>atodo</title> 7 <script src="/atodo/vendor/importmap.js"></script> 8 <link rel="stylesheet" href="/atodo/style.css" /> 9 </head> 10 <body> 11 <div id="app"></div> 12 <script type="module" src="/atodo/app.js"></script> 13 </body> 14</html>