https://medium.com/@ericclemmons/react-event-preventdefault-78c28c950e46
https://facebook.github.io/react/docs/events.html
event.preventDefault();
// Let's stop this event.
event.stopPropagation();
// Really this time.
handleKeyDown(event) {
if (event.keyCode === 13) {
event.preventDefault(); // Let's stop this event.
event.stopPropagation(); // Really this time.
alert("Is it stopped?");
// "Hahaha, I'm gonna submit anyway!" - Chrome
}
}
prevent-react-component-click-event-bubble-to-document
https://stackoverflow.com/questions/44711549/how-to-prevent-react-component-click-event-bubble-to-document/44807016#44807016
https://stackoverflow.com/questions/36316846/react-onclick-and-preventdefault-link-refresh-redirect
https://stackoverflow.com/questions/38619981/react-prevent-event-bubbling-in-nested-components-on-click