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

sketch_viewer.js « blob « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 834aa3e5354d8c7669e5a869b58bf5d17723528c (plain)
1
2
3
4
5
6
7
import SketchLoader from './sketch';

export default () => {
  const el = document.getElementById('js-sketch-viewer');

  new SketchLoader(el); // eslint-disable-line no-new
};