Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
11 lines
419 B
JavaScript
11 lines
419 B
JavaScript
import {showInfoToast, showWarningToast, showErrorToast} from '../modules/toast.js';
|
|
|
|
document.getElementById('info-toast').addEventListener('click', () => {
|
|
showInfoToast('success 😀');
|
|
});
|
|
document.getElementById('warning-toast').addEventListener('click', () => {
|
|
showWarningToast('warning 😐');
|
|
});
|
|
document.getElementById('error-toast').addEventListener('click', () => {
|
|
showErrorToast('error 🙁');
|
|
});
|