Я не могу установить значение счетчика для идентификатора последнего вставленного запроса.Вроде пусто?
componentDidMount() {
//Last inserted query
let postRef = firebase.database().ref('clients').orderByKey().limitToLast(1);
//Fetch the data from the query
postRef.on('value', snapshot => {
this.setState({ counter: snapshot.child('clients').child('ID').val()});
});
}