Ваше действие на acb.action.js не содержит type
export function testAction(text) {
console.log(text);
console.log("ddddd");
return {
action: Actions.SET_IMAGE,
text
};
}
и ваш редуктор примет payload
(abc.reducer.js строка 12) не text
, как вы, поэтому вы должны изменить на
export function testAction(text) {
console.log(text);
console.log("ddddd");
return {
type: Actions.SET_IMAGE,
payload: text
};
}