ReduxCasts icon indicating copy to clipboard operation
ReduxCasts copied to clipboard

Modern React with Redux

Results 33 ReduxCasts issues
Sort by recently updated
recently updated
newest added

Can you update the source code to reflect this comment? https://www.udemy.com/react-redux/learn/v4/questions/1828688

Sparklines updated to 1.5.0, it now requires React 15.4.1 or higher. In your video, you specify `npm install --save react-sparklines`, this probably needs to be adjusted to `npm install --save...

onDeleteClick() { this.props.deletePost(this.props.params.id) .then(() => { this.context.router.push('/'); }); } export function deletePost(id) { const request = axios.delete(`${ROOT_URL}/posts/${id}${API_KEY}`); return { type: DELETE_POST, payload: request }; } The function "deletePost" does not...