// main.js import { initSessions, sessions, currentSessionIndex, renderCurrentSession } from './sessions.js'; import { updateHamburgerPosition } from './navigation.js'; // Import events so they register their listeners. import './events.js'; // Import utilities to set marked options. import './utils.js'; // Initialize sessions initSessions(); updateHamburgerPosition(); // Attach sessions-related variables to the window for global access window.sessions = sessions; window.currentSessionIndex = currentSessionIndex; window.renderCurrentSession = renderCurrentSession;