Firebase and React - Basic example
class HelloWorld extends Component {
state = {
myVal: 10,
}
componentDidMount() {
const rootRef = firebase.database().ref().child('react');
const myValRef = rootRef.child('myVal');
}
render() {
return (
<h1>My val: {this.state.myVal}</h1>
);
}
}