wallet-core/packages/anastasis-webui/src/main.ts

27 lines
709 B
TypeScript
Raw Normal View History

2022-06-03 20:56:58 +02:00
import { setupI18n } from "@gnu-taler/taler-util";
import { h, render } from "preact";
2022-06-06 05:54:55 +02:00
import App from "./components/app.js";
2022-06-03 20:56:58 +02:00
function main(): void {
try {
const container = document.getElementById("container");
if (!container) {
throw Error("container not found, can't mount page contents");
}
render(h(App, {}), container);
} catch (e) {
console.error("got error", e);
if (e instanceof Error) {
document.body.innerText = `Fatal error: "${e.message}". Please report this bug at https://bugs.gnunet.org/.`;
}
}
}
// setupI18n("en", strings);
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", main);
} else {
main();
}