Есть редьюсер, в нем константа:
const CL_SELECT_POST = "ld-comments/commentsLoad/CL_SELECT_POST";
export const commentsLoadSelectPost = (id) => {
return (dispatch, getState) => {
// code here
dispatch({ type: CL_SELECT_POST, payload: data });
}
}
export default (state = initialState, action) => {
switch (action.type) {
...
case CL_SELECT_POST: {
console.log(action);
...
}
...
}
};
export const CL_SELECT_POST = "ld-comments/commentsLoad/CL_SELECT_POST";
Что это за дичь?