JSFiddle - React, Tailwind, and code Playground

by cmruser

JavaScript

(function($) {
	var dialog = {
  	alert: function() {
    
    },
    confirm: function() {
    
    },
    prompt: function() {
    
    }
  };
  
  _alert = function() {
  	console.log(arguments[0]);
  };
})(jQuery);

_alert({
	message: '',
  value: '',
  title: '',
  type: 'alert',
  role: 'success',
  height: "auto",
  width: 400,
  class: '',
  callback: function() {
  
  }
});