Testing Alpha

This commit is contained in:
2025-05-11 14:14:50 -06:00
parent 988b86a33d
commit a7002701f5
1903 changed files with 77534 additions and 36485 deletions

View File

@ -0,0 +1,17 @@
import { Notyf } from 'notyf';
import 'notyf/notyf.min.css';
const notyf = new Notyf({
duration: 5000,
ripple: true,
position: { x: 'right', y: 'top' },
});
export const NotyfDriver = {
notify({ type = 'success', message = '' }) {
notyf.open({
type,
message,
});
},
};