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

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')
}
}