I'm currently utilizing react-player to display a video in my app. The default width it comes with is not responsive, and applying CSS didn't prove to be effective.
import ReactPlayer from 'react-player';
<ReactPlayer url="https://www.youtube.com/watch?v=ysz5S6PUM-U" style={{ width: '100%' }} />
Could someone suggest a method for adjusting both the width and height of the video?