import { S } from "deka-dom-el/signals"; const count= S(0); import { el } from "deka-dom-el"; document.body.append( el("p", S(()=> "Currently: "+count())), el("p", { classList: { red: S(()=> count()%2) }, dataset: { count }, textContent: "Attributes example" }) ); document.head.append( el("style", ".red { color: red; }") ); const interval= 5 * 1000; setTimeout(clearInterval, 10*interval, setInterval(()=> count(count()+1), interval));