Skip to content
Advertisement

Making a react component clickable

I have a functional REACT component, code is as follows

JavaScript

I want to make the entire card clickable. I read through a post on stack overflow Making whole card clickable in Reactstrap which talks about using an anchor tag, but that doesn’t work for me. Can someone help me understand what I am doing wrong?

A card looks like this on my site and I want to make the whole card clickable. enter image description here

Advertisement

Answer

You can use the onClick either on the top-level div element for this, or, in case there would be more cards inside the Row you can wrap each with a div and give it the onClick, property.

such like:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement