diff --git a/client/public/index.html b/client/public/index.html index bf27ed1..c6de8fe 100644 --- a/client/public/index.html +++ b/client/public/index.html @@ -12,6 +12,9 @@ > + + + diff --git a/client/public/index.mjs b/client/public/index.mjs new file mode 100644 index 0000000..38a0082 --- /dev/null +++ b/client/public/index.mjs @@ -0,0 +1,4 @@ +import { age } from "./lib/me.mjs" + +const age_span = document.getElementById("age") +age_span.textContent = age().toString()