Skip to content
Snippets Groups Projects
main.js 161 B
Newer Older
Benedikt's avatar
Benedikt committed
import { initApp } from './app.js';

// Wait for the DOM to be loaded before initializing
document.addEventListener('DOMContentLoaded', () => {
  initApp();
});