firebaseAuth.onAuthStateChanged(function (user) {
if (user) {
//вот тут вы должны получить пользователя если до этого он был авторизован
}
});
updateDimensions = (event ) => {
return this.setState({
height: event.target.innerHeight,
width: event.target.innerWidth
});
}
componentDidMount() {
window.addEventListener("resize", this.updateDimensions);
console.log('тут')
}
componentWillUnmount() {
console.log('тут1')
window.removeEventListener("resize", this.updateDimensions);
}
import React from 'react';
class Menu extends React.Component {
constructor() {
super();
this.state = {
height: window.innerHeight,
width: window.innerWidth,
}
}
updateDimensions = () => {
this.setState({
height: window.innerHeight,
width: window.innerWidth
});
}
componentDidMount() {
window.addEventListener("resize", this.updateDimensions);
console.log('тут')
}
componentWillUnmount() {
console.log('тут1')
window.removeEventListener("resize", this.updateDimensions);
}
render() {
return(
<div></div>
)
}
}
export default Menu;