How to make the whole Card component clickable in Material UI using React JS?

后端 未结 7 1207
抹茶落季
抹茶落季 2021-01-31 03:44

Im using Material UI Next in a React project. I have the Card component which has an image(Card Media) and text(Card Text) inside it. I also have a button underneath the text. M

7条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-31 04:16

    Here is the solution that worked for us, thanks to https://stackoverflow.com/a/50444524/192092

    import { Link as RouterLink } from 'react-router-dom'
    import Link from '@material-ui/core/Link'
    
    
      
        
          ...
        
      
    
    

提交回复
热议问题