gitlab-org--gitlab-foss/app/assets/javascripts/protected_tags/index.js

10 lines
287 B
JavaScript

/* eslint-disable no-unused-vars */
import ProtectedTagCreate from './protected_tag_create';
import ProtectedTagEditList from './protected_tag_edit_list';
$(() => {
const protectedtTagCreate = new ProtectedTagCreate();
const protectedtTagEditList = new ProtectedTagEditList();
});