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
We can also use Link tag to make the whole Card component clickable and for navigation
import { Link } from 'react-router-dom'; function myCard() { return ( <Link to={'/give_your_path'}> <Card> <Card text="This is text"/> </Card> </Link> ); }