import { BaseBox, BoxButtonOnFooter, ButtonCustom, Grid, TextCustom, TextInputCustom, ViewWrapper, } from "@/components"; import { MainColor } from "@/constants/color-palet"; import { ICON_SIZE_SMALL } from "@/constants/constans-value"; import { Ionicons } from "@expo/vector-icons"; import { router, useLocalSearchParams } from "expo-router"; export default function InvestmentInputDonation() { const { id } = useLocalSearchParams(); const bottomComponent = ( router.replace(`/donation/${id}/select-bank`)} > Lanjutan ); return ( <> {listData.map((item, i) => ( Rp. {item.label} ))} Minimal donasi Rp. 10.000 ); } const listData = [ { label: "25.000", value: 25000, }, { label: "50.000", value: 50000, }, { label: "100.000", value: 100000, }, { label: "250.000", value: 250000, }, ];