8 lines
279 B
JavaScript
8 lines
279 B
JavaScript
|
import NotificationsForm from '../../../../notifications_form';
|
||
|
import notificationsDropdown from '../../../../notifications_dropdown';
|
||
|
|
||
|
document.addEventListener('DOMContentLoaded', () => {
|
||
|
new NotificationsForm(); // eslint-disable-line no-new
|
||
|
notificationsDropdown();
|
||
|
});
|