diff --git a/seed/challenges/03-front-end-libraries/react-and-redux.json b/seed/challenges/03-front-end-libraries/react-and-redux.json index 04645dcd120..f4a99fc64e6 100644 --- a/seed/challenges/03-front-end-libraries/react-and-redux.json +++ b/seed/challenges/03-front-end-libraries/react-and-redux.json @@ -543,9 +543,7 @@ " }", " render() {", " // complete the return statement:", - " return (", - "", - " );", + " return (null);", " }", "};" ], diff --git a/seed/challenges/03-front-end-libraries/react.json b/seed/challenges/03-front-end-libraries/react.json index 64a2c399dc2..07d813116c5 100644 --- a/seed/challenges/03-front-end-libraries/react.json +++ b/seed/challenges/03-front-end-libraries/react.json @@ -2596,11 +2596,11 @@ " }", " handleClick() {", " this.setState({", - " counter: // change code here", + " counter: 0 // change code here", " });", " }", " render() {", - " let expression = // change code here", + " let expression = null; // change code here", " return (", "
", " ", @@ -2743,7 +2743,7 @@ " });", " }", " render() {", - " const items = // change code here", + " const items = null; // change code here", " return (", "
", " ", "

Popular Front End JavaScript Frameworks

", @@ -2885,8 +2885,8 @@ " }", " }", " render() {", - " const usersOnline = // change code here", - " const renderOnline = // change code here", + " const usersOnline = null; // change code here", + " const renderOnline = null; // change code here", " return (", "
", "

Current Online Users:

", diff --git a/seed/challenges/03-front-end-libraries/redux.json b/seed/challenges/03-front-end-libraries/redux.json index 49fd798443a..c56a4ee39d6 100644 --- a/seed/challenges/03-front-end-libraries/redux.json +++ b/seed/challenges/03-front-end-libraries/redux.json @@ -676,16 +676,16 @@ "ext": "jsx", "name": "index", "contents": [ - "const INCREMENT = // define a constant for increment action types", - "const DECREMENT = // define a constant for decrement action types", + "const INCREMENT = null; // define a constant for increment action types", + "const DECREMENT = null; // define a constant for decrement action types", "", - "const counterReducer = // define the counter reducer which will increment or decrement the state based on the action it receives", + "const counterReducer = null; // define the counter reducer which will increment or decrement the state based on the action it receives", "", - "const incAction = // define an action creator for incrementing", + "const incAction = null; // define an action creator for incrementing", "", - "const decAction = // define an action creator for decrementing", + "const decAction = null; // define an action creator for decrementing", "", - "const store = // define the Redux store here, passing in your reducers" + "const store = null; // define the Redux store here, passing in your reducers" ] } },