Guest User

Untitled

a guest
Jan 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. state={
  2. panelData:[
  3. { title:"title"
  4. content:["one",2]
  5. }
  6. ]
  7. }
  8.  
  9. panelData: [ {title:"title",content:["one",2]} ,
  10. {title:"title 2"content:[3,4]} ]
  11.  
  12. handlingAddRecipe(){ //this is my update paneldata function
  13. let contentValue = this.state.recipeContent.join("").split(","); //contentValue = ["content1","content2"]
  14.  
  15. this.setState({
  16. panelData:[{
  17. title:this.state.recipeTitle, //title:"title1"
  18. content:contentValue //content:contentValue
  19. }]
  20. })
  21. console.log(this.state.panelData)
  22. }
Add Comment
Please, Sign In to add comment