manniru
5/7/2017 - 6:53 PM

Firebase and React - Basic example

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>
);
}
}