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