aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/App.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-05-05 08:50:35 -0300
committerSebastian <sebasjm@gmail.com>2023-05-05 08:52:59 -0300
commitf2f806a165dd81534d960ce8c3bd139e62f03afb (patch)
treefa10d8e19cb4c426fe19da58e84403d6348636ba /packages/exchange-backoffice-ui/src/App.tsx
parentd03bfa714b4a08c9a9002cdc8999f7981f2b2de6 (diff)
init version
Diffstat (limited to 'packages/exchange-backoffice-ui/src/App.tsx')
-rw-r--r--packages/exchange-backoffice-ui/src/App.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/exchange-backoffice-ui/src/App.tsx b/packages/exchange-backoffice-ui/src/App.tsx
new file mode 100644
index 000000000..04771149f
--- /dev/null
+++ b/packages/exchange-backoffice-ui/src/App.tsx
@@ -0,0 +1,8 @@
+import { h, VNode } from "preact";
+import { HeroSections } from "./HeroSections.js";
+import "./scss/main.css";
+import { Dashboard } from "./Dashborad.js";
+
+export function App(): VNode {
+ return <Dashboard />;
+}