From 93c0f22423f8779957029a4927c5ebfa257bb46b Mon Sep 17 00:00:00 2001 From: Jean Paul Gotopo Maldonado Date: Sat, 26 Dec 2020 04:57:05 -0500 Subject: [PATCH] Issue with State Using semicolon for correct issue when checking code with learnyoureact verify program.js --- exercises/state/solution/views/index.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/state/solution/views/index.jsx b/exercises/state/solution/views/index.jsx index 7c9b977..7ffa894 100644 --- a/exercises/state/solution/views/index.jsx +++ b/exercises/state/solution/views/index.jsx @@ -41,11 +41,11 @@ class Todo extends React.Component { render() { return ( - + - {this.props.title} - {this.props.children} + {this.props.title} + {this.props.children} ); }