diff --git a/src/routes/Player/ControlBar/ControlBar.js b/src/routes/Player/ControlBar/ControlBar.js index d62d3a818..4c317c990 100644 --- a/src/routes/Player/ControlBar/ControlBar.js +++ b/src/routes/Player/ControlBar/ControlBar.js @@ -9,39 +9,55 @@ const SubtitlesButton = require('./SubtitlesButton'); const VolumeSlider = require('./VolumeSlider'); const styles = require('./styles'); -const ControlBar = (props) => { +const ControlBar = ({ + className, + paused, + time, + duration, + volume, + muted, + subtitlesTracks, + onPlayRequested, + onPauseRequested, + onMuteRequested, + onUnmuteRequested, + onVolumeChangeRequested, + onSeekRequested, + onToggleSubtitlesPicker, + ...props +}) => { return ( -
+