I have a question regarding Actions and Reducers. If I understood correctly every action will be forwarded to every single reducer. Won't this cause slow response times if we have hundreds of components and we keep all the state in the store?
Or is the suggestion to use the local Component "state" for "inputs" and "selects"?