aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/exchange-backoffice-ui/src/App.tsx')
-rw-r--r--packages/exchange-backoffice-ui/src/App.tsx10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/exchange-backoffice-ui/src/App.tsx b/packages/exchange-backoffice-ui/src/App.tsx
index 04771149f..65b58a344 100644
--- a/packages/exchange-backoffice-ui/src/App.tsx
+++ b/packages/exchange-backoffice-ui/src/App.tsx
@@ -2,7 +2,15 @@ import { h, VNode } from "preact";
import { HeroSections } from "./HeroSections.js";
import "./scss/main.css";
import { Dashboard } from "./Dashborad.js";
+import { Form } from "./Form.js";
+import { TranslationProvider } from "@gnu-taler/web-util/browser";
export function App(): VNode {
- return <Dashboard />;
+ return (
+ <TranslationProvider source={{}}>
+ <Dashboard>
+ <Form />
+ </Dashboard>
+ </TranslationProvider>
+ );
}