How can I implement lazy loading for the image within the CardMedia component? Is there a specific attribute I should use or any other method to achieve this?
<CardMedia
key={cardIndex}
component="img"
style={{objectFit: 'contain', height: props.height}}
image={(cardItem)}
/>