남상우
Results
1
comments of
남상우
export const createPromiseThunk = (type, promiseCreator) => { const [SUCCESS, ERROR] = [`${type}_SUCCESS`, `${type}_ERROR`]; return param => async dispatch => { dispatch({ type, param }); try { const payload =...