react-toastr
react-toastr copied to clipboard
jquery dependency
sorry. It isn't that clear to me. Does this library depends on jquery or not? Thanks!
Depending on which ToastMessageFactory
you're using. If you use ReactToastr.ToastMessage.animation
like in the example, then no jquery is needed.
FYI, for anyone who might be struggling with this, this is ES5 code that makes the jQuery mixin work:
window.jQuery = require('jquery');
var ToastMessageFactory = React.createFactory(ToastMessage.jQuery);