Let\'s say I have a list of plain objects in my this.state.list that I can then use to render a list of children. What then is the right way to insert object in
this.state.list
Update 2016
With ES6 you can use:
this.setState({ list: [...this.state.list, ...newObject] });