10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
export default class extends Controller {
|
|
static targets = ['notif'];
|
|
|
|
close() {
|
|
this.notifTarget.classList.add('is-hidden');
|
|
}
|
|
}
|