Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
onLoad = (track: ITrack) => ({ duration }: { duration: number }) => {
// this.props.changeStatus('PLAYING')
this.props.setCurrentTime(0)
this.props.setSlideTime(0)
this.props.setDuration(duration)
MusicControl.setNowPlaying({
title: track.name,
artwork: track.album.picUrl,
artist: track.artists[0].name,
duration
})
}