I am trying to use onExited method (Material-UI v1.0.0-beta.41) in react js like:
fireOnExit=()=>{
alert("Exited");
}
<button label="Cancel" onClick={this.handleClose} onExited{()=>this.fireOnExit()}/>
However, it doesn't work. Any ideas? Thanks!