diff options
Diffstat (limited to 'packages/exchange-backoffice-ui/src/App.tsx')
-rw-r--r-- | packages/exchange-backoffice-ui/src/App.tsx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/packages/exchange-backoffice-ui/src/App.tsx b/packages/exchange-backoffice-ui/src/App.tsx index 65b58a344..95926e634 100644 --- a/packages/exchange-backoffice-ui/src/App.tsx +++ b/packages/exchange-backoffice-ui/src/App.tsx @@ -1,16 +1,12 @@ +import { TranslationProvider } from "@gnu-taler/web-util/browser"; 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"; +import "./scss/main.css"; export function App(): VNode { return ( <TranslationProvider source={{}}> - <Dashboard> - <Form /> - </Dashboard> + <Dashboard /> </TranslationProvider> ); } |