blob: dabaf0576296416c24cee87bfc96251ef68ff346 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import * as JSX from "./jsx";
import Home from "./home";
JSX.setDefaultTitle( "forum.networkheaven.net" );
JSX.addRoute( "/", () => <Home /> );
document.head.appendChild( <link rel="shortcut icon" href="/static/icon.ico" /> );
const url = new URL( window.location.href );
JSX.navigateParams( url.pathname, url.searchParams.entries() );
|