javascriptreactjsalertalertify

How to use ALERTIFY JS in React?


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'); 
  });
}

Solution

  • Need to add the css file too. Problem Solved.

    import 'alertifyjs/build/css/alertify.css';