blob: 6001312195cae0e8d818c0e8f1cea3f253148568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { TranslationProvider } from "@gnu-taler/web-util/browser";
import { h, VNode } from "preact";
import { Dashboard } from "./Dashboard.js";
import "./scss/main.css";
export function App(): VNode {
return (
<TranslationProvider source={{}}>
<Dashboard />
</TranslationProvider>
);
}
|