const root = document.getElementById('root'); async function getData() { const data1 = await fetch('./groups.json').then((res) => res.json()); root.innerHTML = getHtml(data1); } function getHtml(data) { return `
| Имя | Время | Telegram |
|---|---|---|
| ${el.name} | ${el.availableTime.from} - ${el.availableTime.to} | ${el.tgUsername} |