Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function simpleNotice() {
return PNotify.notice({
title: "Yay!",
text: "It works!"
});
}
export default function moduleNotice () {
return PNotify.notice({
title: 'Yay!',
text: 'It works!',
modules: {
Confirm: {
confirm: true
}
}
});
}
export default function simpleNotice () {
return PNotify.notice({
title: 'Yay!',
text: 'It works!'
});
}
export default function moduleNotice () {
return PNotify.notice({
title: 'Yay!',
text: 'It works!',
modules: {
Confirm: {
confirm: true
}
}
});
}