From bcd3a5a2744b3ec474e8b3e36ec8e2599c13cfba Mon Sep 17 00:00:00 2001 From: 1nonlypiece Date: Thu, 19 Dec 2024 10:32:39 +0000 Subject: [PATCH 01/36] feat(frontend): add WithdrawAll component and route --- frontend/src/App.jsx | 2 + .../dashboard/withdraw-all/WithdrawAll.jsx | 30 ++++ .../dashboard/withdraw-all/withdraw_all.css | 167 ++++++++++++++++++ 3 files changed, 199 insertions(+) create mode 100644 frontend/src/pages/spotnet/dashboard/withdraw-all/WithdrawAll.jsx create mode 100644 frontend/src/pages/spotnet/dashboard/withdraw-all/withdraw_all.css diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 07c236a6..add0c004 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -22,6 +22,7 @@ import { TELEGRAM_BOT_LINK } from 'utils/constants'; import { useCheckMobile } from 'hooks/useCheckMobile'; import { notifyError } from 'utils/notification'; import PositionHistory from 'pages/spotnet/position_history/PositionHistory'; +import WithdrawAll from 'pages/spotnet/dashboard/withdraw-all/WithdrawAll'; function App() { @@ -110,6 +111,7 @@ function App() { } /> } /> } /> + } />