6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
const Stand_list = {
|
|
init: async () => {
|
|
let html = await fetch('/lib/pages/stand/list/index.html').then((response) => response.text());
|
|
app.innerHTML = html;
|
|
},
|
|
} |