todos-preact

This commit is contained in:
Dmitry Vasilev
2023-06-19 07:59:21 +03:00
parent 1a93e5c493
commit c918674d0c
3 changed files with 165 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<title>Todos Example</title>
<script type='module'>
if(new URLSearchParams(window.location.search).get('leporello') == null) {
await import('./index.js');
}
</script>
</head>
<body>
</body>
</html>