<div> when show is updated. I don't understand, however, how Qwik knows what to re-render in this case. Even is show.value is behind a Proxy, there's no way for it to know specifically which element it's being accessed in. show is being accessed in the component, but would re-render the entire component. If you were to write this code in Solid (another signals-based framework), you would use the custom <Show> component to tell Solid a signal is being used. <div>'s contents and not the entire component when the signal is being used in a ternary outside of Qwik's knowledge? Is it just bundler magic, an obscure JavaScript feature, or am I missing something obvious?