8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
|
import NotificationsForm from '../../../notifications_form';
|
||
|
import notificationsDropdown from '../../../notifications_dropdown';
|
||
|
|
||
|
export default () => {
|
||
|
new NotificationsForm(); // eslint-disable-line no-new
|
||
|
notificationsDropdown();
|
||
|
};
|