function onLinkClick(e) {
e.preventDefault();
// further processing happens here
}
<a href="/my-invoice-link" onClick={onLinkClick} />
function handleSubmit(event) {
event.preventDefault();
}
<form onSubmit={handleSubmit}></form>