0
Cách Truyền Prop
cho em hỏi lại 1 bài tutorial của viblo https://viblo.asia/p/tu-tao-audio-player-voi-react-07LKXmy2ZV4 tại sao onChange={handleTimeSliderChange} không truyền x mà tại sao ở trên function
const handleTimeSliderChange = ({ x }) => {
audioRef.current.currentTime = x;
setCurrentTime(x);
if (!isPlay) {
setPlay(true);
audioRef.current.play();
}
};
lại nhận đc prop x v ạ ?
Mong mọi người giúp em
Thêm một bình luận
1 CÂU TRẢ LỜI
+2
@Gemblue Bạn đọc code core của package sẽ hiểu thêm đó https://github.com/swiftcarrot/react-input-slider/blob/master/src/slider.js#L69