Where to put business logic in redux? action or store
问题 i come from Reflux to Redux . in Reflux your business logic is exist only in store but in Redux its seems different..for example in " Redux " i have "async-action" and i implemented it with " redux-thunk " . in one scenario i want to check something in my action and if that needed i send request to server and get some data. i this case i have to check my logic in my action and actually my business logic is exist in action and store together and its not good.. what is your solution? for