Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « activity « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7af95127fd5c5c697a28a935928032b885bb4b77 (plain)
1
2
3
4
5
6
7
import Activities from '~/activities';
import ShortcutsNavigation from '~/shortcuts_navigation';

export default function () {
  new Activities(); // eslint-disable-line no-new
  new ShortcutsNavigation(); // eslint-disable-line no-new
}