Files
enlight-lms/frontend/src/utils/index.js
2023-12-20 10:35:12 +05:30

9 lines
131 B
JavaScript

import { toast } from 'frappe-ui'
export function createToast(options) {
toast({
position: 'bottom-right',
...options,
})
}