I'm trying to use ALERTIFYJS in react but its alertify alerts are not working. Below is the code
(window.alert is working fine on my browser)
import alertify from 'alertifyjs';
clickHandle = () => {
alertify.alert('Alert Title', 'Alert Message!', function(){
alertify.success('Ok');
});
}