import '../styles/counter.css' import { Countdown } from './counter.js' import { fetchObject } from './fetch.js'; // select elements const app = document.querySelector('.countdown-timer'); const message = document.querySelector('.message'); const heading = document.querySelector('h1'); const api = new fetchObject("http://localhost:8000/counter", app.dataset.id); const counter = await api.getCounter(); heading.innerText = counter.name; const buttonInit = document.querySelector('#init'); const buttonStart = document.querySelector('#start'); // Get the new year const getEndTime = () => { return new Date(Date.parse(counter.endTime)); }; const format = (t) => { return t < 10 ? '0' + t : t; }; const render = (time) => { app.innerHTML = `