toggleState = () => {
        const { visible } = this.state;
        this.setState({
            visible: !visible,
        });