I\'ve been experimenting with React. In my experiement, I\'m using the Reactstrap framework.When I click a button, I\'ve noticed that the HTML form submits. Is there a way t
You have prevent the default action of the event and return false from the function.
false
function onTestClick(e) { e.preventDefault(); return false; }