DEV Community

Discussion on: Using a Modal in React

Collapse
 
lukidwianto profile image
Luki

Its more simple if you just use one function to close and open modal:

toggleModal = () => {
this.setState({ showModal: !this.state.showModal });
};