So I have heard it's good to keep them all in one folder in your src folder but then if I ever wanted to use the action from somewhere deep in my component tree, I'd have to:
import increment from '../../../../../actions/increment';
Alternatively each action could be kept in the folder I'm using it in, but then if two different components needed to use the action, I'd have to send the action through props or make a copy of it.
I'm sorry I'm a complete newbie with Redux. Is there a nice concise way to do this?