Redux, Selectors

Always use a selector to get state from components. export const getAudio = (state) => { return { audio_folder: state.audio_folder, playing: state.playing } }

Published
Categorized as Coding, Redux