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

init_milestones_show.js « shared « milestones « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aa5be0d5b94d360dd5bdf974d9e42d84097d548 (plain)
1
2
3
4
5
6
7
8
9
/* eslint-disable no-new */

import Milestone from '~/milestone';
import Sidebar from '~/right_sidebar';

export default () => {
  new Milestone();
  new Sidebar();
};