MouseEnter, Over, and Leave don't preclude other events from firing, so they currently set state.preventDefault = false afterward to avoid preventing others. This is awkward and brittle, and there's probably a better approach.
This could be a separate event handler, or could be fixed as part of a larger revamp of preventDefault.
MouseEnter, Over, and Leave don't preclude other events from firing, so they currently set
state.preventDefault = false
afterward to avoid preventing others. This is awkward and brittle, and there's probably a better approach.This could be a separate event handler, or could be fixed as part of a larger revamp of
preventDefault
.