From 36012230ab079e3a71a8fd5f942fa1af787c231e Mon Sep 17 00:00:00 2001 From: shayan khaleghparast Date: Wed, 29 May 2024 13:54:06 +0800 Subject: [PATCH] fix: add notifications component in the export list --- playground/index.tsx | 50 ++++++++++++++++++++++++++++++++++++++++++++ src/main.ts | 1 + 2 files changed, 51 insertions(+) diff --git a/playground/index.tsx b/playground/index.tsx index 6da1b79c..1b249ec5 100644 --- a/playground/index.tsx +++ b/playground/index.tsx @@ -283,6 +283,56 @@ const App = () => { This is a footer + + account.isActive, + ) || { + icon: , + currencyLabel: "Bitcoin", + loginid: "id2", + balance: "0", + currency: "BTC", + isVirtual: false, + isActive: true, + } + } + > + + + + {accountsList + .filter((account) => !account.isVirtual) + .map((account) => ( + {}} + /> + ))} + + + + + + Looking for CFD?{" "} + + + + + this is a footer + + + + test 2 + + + )} diff --git a/src/main.ts b/src/main.ts index 3d0cf579..d6b3b73f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -35,6 +35,7 @@ export { PlatformSwitcherItem, DesktopLanguagesModal, MobileLanguagesDrawer, + Notifications, TooltipMenuIcon, } from "./components/AppLayout"; export { ContextMenu } from "./components/ContextMenu";