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