diff options
| author | Max Nanis | 2025-06-09 19:12:44 +0700 |
|---|---|---|
| committer | Max Nanis | 2025-06-09 19:12:44 +0700 |
| commit | 897e93b3a6596d25c19fe0a3579d9cd4c9ea66e7 (patch) | |
| tree | e9adf209e4cf9061b3ac383c8d13c2ded0203daf /src/pages/CashoutMethods.tsx | |
| parent | 74890e251dee3e0f195583431cb48b9f3a58ecc9 (diff) | |
| download | panel-ui-897e93b3a6596d25c19fe0a3579d9cd4c9ea66e7.tar.gz panel-ui-897e93b3a6596d25c19fe0a3579d9cd4c9ea66e7.zip | |
Debugging reducer logic for Upk and Marketplace Answers, along with Upk global definitions
Diffstat (limited to 'src/pages/CashoutMethods.tsx')
| -rw-r--r-- | src/pages/CashoutMethods.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pages/CashoutMethods.tsx b/src/pages/CashoutMethods.tsx index fca6af0..9cb0f20 100644 --- a/src/pages/CashoutMethods.tsx +++ b/src/pages/CashoutMethods.tsx @@ -3,6 +3,7 @@ import {Card, CardContent, CardHeader,} from "@/components/ui/card" import {Tabs, TabsContent, TabsList, TabsTrigger,} from "@/components/ui/tabs" import {Badge} from "@/components/ui/badge" +import { Input } from "@/components/ui/input" import {selectFixedCashoutMethods, selectVariableCashoutMethods} from "@/models/cashoutMethodSlice.ts"; import {CashoutMethodOut, UserWalletBalance} from "@/api" import {formatCentsToUSD} from "@/lib/utils.ts"; @@ -47,6 +48,15 @@ const CashoutReview: React.FC<{ cashout_method: CashoutMethodOut }> = ({cashout_ ) } +const CreateCashout = () => { + + return ( + <> + <Input type="email" placeholder="Email" /> + </> + ) +} + const VariableCashoutMethodPreview: React.FC<{ cashout_method: CashoutMethodOut }> = ({cashout_method}) => { return ( <> |
