mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
11 lines
280 B
JavaScript
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')
|
|
}
|
|
}
|