import './css/style.css'; import Calendar from './js/component/Calendar'; const root = document.getElementById('root'); // new Calendar(root); if (root) { const calendar = new Calendar(root); }