22 lines
		
	
	
		
			256 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			256 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| title: Map State to Props
 | |
| ---
 | |
| ## Map State to Props
 | |
| 
 | |
| ### Solution
 | |
| <details>
 | |
|   <summary>Spoiler!</summary>
 | |
| 
 | |
| ```jsx
 | |
| const state = [];
 | |
| 
 | |
| // change code below this line
 | |
| const mapStateToProps = (state)=>{
 | |
|   return {
 | |
|     messages: state
 | |
|   }
 | |
| }
 | |
| ```
 | |
| 
 | |
| </details>
 |