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