Accessible Div Blog - Simple onClick
function AccountCard(props) { | |
function handleClick(e) { | |
redirect(‘account’, props.account.accountId) | |
} | |
return ( | |
<div onClick={handleClick}> | |
// account card content | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment