Files
2025-04-13 16:43:50 +02:00

14 lines
305 B
JavaScript

import { setupResetButton } from './button.js';
import { loadStatus, updateTimer } from './timer.js';
import { drawChart } from './chart.js';
window.addEventListener("DOMContentLoaded", () => {
loadStatus();
updateTimer();
setInterval(updateTimer, 1000);
setupResetButton();
drawChart();
});