As a newcomer to React JS, I decided to use react-simple-image-slider for my image slider component. However, I am facing an issue with making the images responsive on mobile devices. I tried setting the width and height using vw, vh or percentage units, but unfortunately, it only accepts numbers. I have a feeling that there might be an advanced concept that addresses this problem, but I am not sure what it is. Any assistance or guidance on this matter would be greatly appreciated!
<div className="card_imgBox">
<SimpleImageSlider
className="card_img"
width={400}
height={300}
images={item.thumb}
showBullets={true}
showNavs={true}
/>