csj
csj
Adding to this idea ``` export function NonPropagatingDraggable(props: Partial) { function stopPropagation(e: DraggableEvent) { e.stopPropagation() e.preventDefault() } return { props.onDrag?.(e, data); stopPropagation(e) }} onStop={(e, data) => { props.onStop?.(e, data); stopPropagation(e)...
The reason I ask for the 0.5 point split is because that is what the ELO ranking system would do. In my earlier example, the ELO system would adjust the...
I've taken on gwillem's practice of writing the same kinds of unit tests by hand and I concur -- building these things by hand, then re-visiting them when they fail,...
I see, thanks for the explanation and alternative solution.