Change addTrack action to addTracks, supporting multiple tracks to be added to the queue in one call

This commit is contained in:
Deluan
2020-05-05 12:07:50 -04:00
parent 5495451448
commit 23836d7c3c
4 changed files with 23 additions and 15 deletions
+9 -2
View File
@@ -1,10 +1,17 @@
import Player from './Player'
import {
addTrack,
addTracks,
setTrack,
playQueueReducer,
playAlbum,
shuffleAlbum,
} from './queue'
export { Player, addTrack, setTrack, playAlbum, playQueueReducer, shuffleAlbum }
export {
Player,
addTracks,
setTrack,
playAlbum,
playQueueReducer,
shuffleAlbum,
}