mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
import { showNotificationsForHandler } from '../show_notifications'
|
|
|
|
import 'toastr/build/toastr.min.css'
|
|
|
|
export default class extends Controller {
|
|
connect() {
|
|
showNotificationsForHandler('toastr')
|
|
}
|
|
}
|