+ { /* render an input, button, and ul here */ }
+
+
+
+ {this.state.messages.map((x, i)=>{
+ return
{x}
+ })}
+
+ { /* change code above this line */ }
+
+ );
+ }
+};
+```
+
+
diff --git a/guide/english/certifications/front-end-libraries/react-and-redux/map-dispatch-to-props/index.md b/guide/english/certifications/front-end-libraries/react-and-redux/map-dispatch-to-props/index.md
index 18cf5cdd26..31de6ac90b 100644
--- a/guide/english/certifications/front-end-libraries/react-and-redux/map-dispatch-to-props/index.md
+++ b/guide/english/certifications/front-end-libraries/react-and-redux/map-dispatch-to-props/index.md
@@ -3,8 +3,25 @@ title: Map Dispatch to Props
---
## Map Dispatch to Props
-This is a stub. Help our community expand it.
+### Solution
+
+ Spoiler!
+
+```jsx
+const addMessage = (message) => {
+ return {
+ type: 'ADD',
+ message: message
+ }
+};
-This quick style guide will help ensure your pull request gets accepted.
-
-
+// change code below this line
+const mapDispatchToProps = (dispatch) => {
+ return {
+ submitNewMessage: (message)=>{
+ dispatch(addMessage(message))
+ }
+ }
+}
+```
+
diff --git a/guide/english/certifications/front-end-libraries/react-and-redux/map-state-to-props/index.md b/guide/english/certifications/front-end-libraries/react-and-redux/map-state-to-props/index.md
index 876a34a5c3..79ce792f60 100644
--- a/guide/english/certifications/front-end-libraries/react-and-redux/map-state-to-props/index.md
+++ b/guide/english/certifications/front-end-libraries/react-and-redux/map-state-to-props/index.md
@@ -3,8 +3,19 @@ title: Map State to Props
---
## Map State to Props
-This is a stub. Help our community expand it.
+### Solution
+
+ Spoiler!
-This quick style guide will help ensure your pull request gets accepted.
+```jsx
+const state = [];
-
+// change code below this line
+const mapStateToProps = (state)=>{
+ return {
+ messages: state
+ }
+}
+```
+
+
diff --git a/guide/english/certifications/front-end-libraries/react-and-redux/moving-forward-from-here/index.md b/guide/english/certifications/front-end-libraries/react-and-redux/moving-forward-from-here/index.md
index e5843268bf..82de6ec28f 100644
--- a/guide/english/certifications/front-end-libraries/react-and-redux/moving-forward-from-here/index.md
+++ b/guide/english/certifications/front-end-libraries/react-and-redux/moving-forward-from-here/index.md
@@ -3,8 +3,12 @@ title: Moving Forward From Here
---
## Moving Forward From Here
-This is a stub. Help our community expand it.
+### Solution
+
+Spoiler!
-This quick style guide will help ensure your pull request gets accepted.
+```jsx
+console.log('Now I know React and Redux!')
+```
-
+
diff --git a/guide/english/certifications/front-end-libraries/react-and-redux/use-provider-to-connect-redux-to-react/index.md b/guide/english/certifications/front-end-libraries/react-and-redux/use-provider-to-connect-redux-to-react/index.md
index 8e2b2bbac4..0ec70aa8f0 100644
--- a/guide/english/certifications/front-end-libraries/react-and-redux/use-provider-to-connect-redux-to-react/index.md
+++ b/guide/english/certifications/front-end-libraries/react-and-redux/use-provider-to-connect-redux-to-react/index.md
@@ -4,94 +4,99 @@ title: Use Provider to Connect Redux to React
## Use Provider to Connect Redux to React
### Hint 1
+Render a React Component!
+### Hint 2
You do not need to wrap the `Provider` in any `