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