What is the difference between event.preventDefault() and return false in react?
e.preventDefault() will prevent the default event to occur, e.stopPropagation() will prevent the event from bubbling up the event and return false will do both the behaviour.