UNPKG

media_player_wrapper

Version:
17 lines (13 loc) 284 B
// Actions for the streamer export const setPlaybackState = playbackState => ({ type: "SET_PLAYBACK_STATE", playbackState }); export const setIsPlaying = value => ({ type: "SET_IS_PLAYING", value }); export const setVolume = volume => ({ type: "SET_VOLUME", volume });