v6.0.0
import { ReactDialog } from 'depay-react-dialog'
/*...*/
close() {
if(this.state == something) {
this.setState({ showDialog: false })
}
}
/*...*/
<ReactDialog close={this.close} open={this.showDialog}>
<h1>I am a dialog</h1>
<button onclick={this.close}>Close Dialog</button>
</ReactDialog>