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

index.js « merge_requests « settings « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 739e666644c37f441e989c26e6cd56c9a0d4e5a9 (plain)
1
2
3
4
5
6
7
8
9
10
import groupsSelect from '~/groups_select';
import UserCallout from '~/user_callout';
import UsersSelect from '~/users_select';

// eslint-disable-next-line no-new
new UsersSelect();
groupsSelect();

// eslint-disable-next-line no-new
new UserCallout({ className: 'js-mr-approval-callout' });