What is best practice to communicate between React components and services?
问题 Instead of using flux/redux architecture, how react components should communicate with services? For example: There is a container having few representational (react) components: ChatBox - enables to read/write messages AvatarBox with password changer - which enables to change user's password News stream - lists news and apply filter to them Thinking of them as resources representation, I want each of them to access Microservice API by itself (getting or updating data). Is this correct? It