systemquery/src/static/app.mjs
2022-02-24 00:39:27 +00:00

8 lines
201 B
JavaScript

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