feat: initial resumability *idea*

This commit is contained in:
Ayo 2023-10-13 11:16:19 +02:00
parent 4b23610342
commit 8f18cf4253

View file

@ -11,6 +11,14 @@
function getHomeLabel() { function getHomeLabel() {
return "Home" + "!!! " + new Date().toLocaleDateString(); return "Home" + "!!! " + new Date().toLocaleDateString();
} }
greeting = "nope";
mcDelivery(() =>
setInterval(() => {
greeting = "hello " + new Date().toLocaleTimeString();
}, 1000)
);
</script> </script>
</head> </head>
<body> <body>