Files

22 lines
256 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Map State to Props
---
## Map State to Props
### Solution
<details>
<summary>Spoiler!</summary>
2018-10-12 15:37:13 -04:00
```jsx
const state = [];
2018-10-12 15:37:13 -04:00
// change code below this line
const mapStateToProps = (state)=>{
return {
messages: state
}
}
```
</details>