BosatsuUI vs React 18 - Simulated WebSocket-style rapid updates
Both dashboards receive identical simulated "WebSocket" updates at the same rate.
BosatsuUI uses batchSize: Infinity with flushDelay: 'microtask'
(equivalent to React 18's automatic batching) but skips VDOM diffing entirely.
Why BosatsuUI is faster: When updating ['metrics', 'cpu'],
BosatsuUI does O(1) map lookup + direct DOM write. React must create new VDOM tree,
diff against old tree, and reconcile 50+ children.
Note: This demo simulates high-frequency updates. In real applications, you'd typically throttle updates for smooth visualization.