Created
September 30, 2020 19:20
-
-
Save aeaston/b406b73d4c9c92bfc74a035c3511a14c to your computer and use it in GitHub Desktop.
Accessible Div Blog - Simple onClick
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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