redux-saga-beginner-tutorial
redux-saga-beginner-tutorial copied to clipboard
Errors in Chinese documents
There is something wrong in Chinese document
export function* watchIncrementAsync() { yield* takeEvery('INCREMENT_ASYNC', incrementAsync) }
It should be
export function* watchIncrementAsync() { yield takeEvery('INCREMENT_ASYNC', incrementAsync) }