using react-modal, need to show the modal on click of the hyperlink either through anchor tag or react-router-dom Link
example: click on register hyperlink and register form modal should open
handleClick() =>{
<ReactModal/>
}
<table>
<tr>
<td>
<a href='' onclick='handleClick()'>check</>
</td>
</tr>
</table>
is there a way to do that?