Created
October 3, 2017 21:45
-
-
Save AndrewRayCode/550ebc6afa3676e196abcad29198a2a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { status } = this.state.status; | |
const key = 'Downloading the song'; | |
const downloading = status[key]; | |
const newStatus = { | |
...status, | |
key: [ | |
downloading[0], | |
'Info', | |
...downloading.slice(2) | |
] | |
}; | |
this.setState({status : newStatus }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment