Files
php-flasher/docs/assets/js/controllers/sweetalert_controller.js
T
2024-04-09 07:57:01 +00:00

11 lines
280 B
JavaScript

import { Controller } from '@hotwired/stimulus'
import { showNotificationsForHandler } from '../show_notifications'
import 'sweetalert2/dist/sweetalert2.min.css'
export default class extends Controller {
connect() {
showNotificationsForHandler('sweetalert')
}
}