You are not derefing the events inside your component. You can do sth like this to let Reagent know that you want to redraw the component when events change.
Ah! I always get confused whether it’s where I subscribe to the atom, or where I deref it. Thanks! Having done this, I found the deeper problem that the underlying library simply isn’t compatible with React updates (on data change, it appends multiple blank things into the place, rather than replacing anything, and they don’t seem to have compatible data-stores). Time to rewrite the library in happy cljs.