Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // view
  2. this.props.displayedMass.map(function (el, index) {
  3. return <Message asd={el.text} key={index}/>;
  4. })
  5. //reducer
  6. const defaultState = [];
  7.  
  8. function reducer(state = defaultState,action){
  9. let newState = state.concat(action._data);
  10. return newState;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement