diff options
Diffstat (limited to 'test/counter.html')
-rw-r--r-- | test/counter.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/counter.html b/test/counter.html new file mode 100644 index 0000000..2589c00 --- /dev/null +++ b/test/counter.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>lustre | counter</title> + + <script type="module"> + import { main } from "../build/dev/javascript/lustre/counter.mjs"; + + document.addEventListener("DOMContentLoaded", main); + </script> + </head> + <body></body> +</html> |