import React, { useState } from "react"; import { View, Text, TextInput } from "react-native"; import styles, { COLORS } from "@/styles/styles"; import Button from "@/containers/Button"; interface BuyInSelectorProps { setBuyInAmount: React.Dispatch>; selectedCurrency: string; // Accept selectedCurrency as a prop } const defaultBuyInOptions = [10, 25, 50]; const BuyInSelector: React.FC = ({ setBuyInAmount, selectedCurrency, }) => { const [customAmount, setCustomAmount] = useState(""); const [buyInAmount, setBuyInAmountState] = useState(null); const handleCustomAmountChange = (value: string) => { const numericValue = parseFloat(value); if (!isNaN(numericValue) && numericValue >= 0) { setCustomAmount(value); setBuyInAmountState(numericValue); setBuyInAmount(numericValue); } else { setCustomAmount(""); setBuyInAmountState(25); setBuyInAmount(25); } }; const handleBuyInSelection = (amount: number) => { setBuyInAmountState(amount); setCustomAmount(""); setBuyInAmount(amount); }; return ( <> {defaultBuyInOptions.map((amount) => ( ))} Or enter a custom amount: Selected Buy-in:{" "} {buyInAmount !== null ? `${selectedCurrency} ${buyInAmount}` : "None"} ); }; export default BuyInSelector;