8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
const Schedule = {
|
|
init: async () => {
|
|
let html = await fetch('/lib/pages/schedule/index.html').then((response) => response.text());
|
|
app.innerHTML = html;
|
|
|
|
|
|
}
|
|
} |