, ComponentDidMount peopleArray. , , Firebase. , peopleArray , . React , , - , . , . .
, let peopleArray = [] onbalue firebase, , . , Firebase , . , , .
CDM:
componentDidMount() {
this.dbroot = firebase.database().ref().child('io')
this.dbroot.on('value', snapshot => {
let peopleArray = []
snapshot.forEach((snap) => {
if(snap.val().active === true) {
peopleArray.push(snap.val())
}
})
this.setState({people: peopleArray})
});
}