src > state OR src > redux
add store to
store.ts in src/state
add all actions to
index.ts in src/state/actions/
add all action types to
index.ts in src/state/action-types/
add all action creators to
index.ts in src/state/action-creators/
centralise main exports in state/index.ts
export * from "./store";
export * as actionCreators from "./action-creators";
export * from "./store";
export * as actionCreators from "./action-creators";