* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
279 B
279 B
title
title |
---|
Map State to Props |
Map State to Props
Solutions
Solution 1 (Click to Show/Hide)
const state = [];
// change code below this line
const mapStateToProps = (state)=>{
return {
messages: state
}
}