summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches/index.js
blob: c9e7af127d2f2363fae4ab7f61e7d6b414bde534 (plain)
1
2
3
4
5
6
7
8
9
/* eslint-disable no-unused-vars */

import ProtectedBranchCreate from './protected_branch_create';
import ProtectedBranchEditList from './protected_branch_edit_list';

$(() => {
  const protectedBranchCreate = new ProtectedBranchCreate();
  const protectedBranchEditList = new ProtectedBranchEditList();
});