class Parent extends React.Component{
  constructor(props){
     super(props);
     this.state={
        data : props.data
     };  
   }
   render(){
     for(let i=0;i<this.state.data.length;i++){
       let row = this.state.data[i]; 
        //row.value = 0 here 
       outs.push(<Children row={row}/>);
     }      
   }
}
class Children extends React.Component{
  constructor(props){
    super(props);
  }
  render(){
   let row = this.props.row;
       this.changeRowValue(row);
      if(row.value == 1){
          //do something
      }
      ....
  }
  changeRowValue(row){ 
       row.value = 1;
      //how do i set the state of data object here ?
  }
}
Example of data object
data = 
[0] => {value : 0,someother : somevalue},
[1] => {value : 0,someother : somevalue},
[2] => {value : 0,someother : somevalue}
if i change the value of data[1].value = 1 in Children class , how do i set State of whole data object ?
 
    