systemquery/src/static/app.mjs

8 lines
201 B
JavaScript
Raw Normal View History

import make_router from './js/routes_client.mjs';
window.addEventListener("load", (_event) => {
globalThis.sysquery_router = make_router();
globalThis.sysquery_router.navigate_current_hash();
});