I make some of canvas menu on my component in react, now it's working conditionally. So I have a state:
constructor(props) {
    super(props);
    this.state = {isToggleOn: true};
    this.toggleMenu = this.toggleMenu.bind(this);
}
componentDidMount() {
    this.setState({isToggleOn: false});
}
toggleMenu() {
    this.setState(prevState => ({
        isToggleOn: !prevState.isToggleOn
    }));
}
I want to make my body css overflow:hidden when my isToggleOn state is true and when it's false I want to delete overflow:hidden from body. How can that be achieved? 
 
     
    