index.js 260 字节
Newer Older
1 2 3
import Project from './project';
import ShortcutsNavigation from '../../shortcuts_navigation';

4
document.addEventListener('DOMContentLoaded', () => {
5 6
  new Project(); // eslint-disable-line no-new
  new ShortcutsNavigation(); // eslint-disable-line no-new
7
});