import './styles.css'; import { createApp } from './app/create-app.js'; const root = document.getElementById('app'); if (!root) { throw new Error('App root not found'); } createApp(root).catch((error) => { console.error('Failed to start TimePlot', error); root.innerHTML = `

TimePlot failed to start

${String(error)}
`; });