Is there a way to lazyload the image in CardMedia component in material ui?
I am trying to lazy load the image in the CardMedia component. Is there an attribute i can use or any other way to incorporate the lazy loading of the image in the component.
<CardMedia
key={cardInd开发者_如何转开发ex}
component="img"
style={{objectFit: 'contain', height: props.height}}
image={(cardItem)}
/>
精彩评论