ยฉ 2026 Hedgehog Software, LLC
const [show, setShow] = createSignal(false);
startTransition(() => setShow(true));
console.log('show=', show()); // true await new Promise((r) => setTimeout(r, 1)); console.log('show=', show()); // false !!!