From 2da5c2cc1e7c35704d98fa3926891d6fa2b28cba Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Wed, 30 May 2018 21:45:04 -0400 Subject: [PATCH] Update CommentsRedux2.md --- CommentsRedux2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommentsRedux2.md b/CommentsRedux2.md index eb3d23b..6a66a3c 100755 --- a/CommentsRedux2.md +++ b/CommentsRedux2.md @@ -65,7 +65,7 @@ In `js/components/commentslist.jsx`, export `VisibleCommentsList`: export default VisibleCommentsList; ``` -You can now remove the `constructor`/`componentDidMount` functions and change `this.state.comments.map` to `this.props.comments.map` show we back to using props instead of component state: +You can now remove the `constructor`/`componentDidMount` functions and change `this.state.comments.map` to `this.props.comments.map`. We're back to using props instead of component state: ## Map a Dispatch ADD Action to a CommentsForm Component property