import { asp as g } from "@asp/asp"; import { BarnoinPayBackground } from "@components/BarnoinPayBackground"; import BeasyLogoIcon from "@components/BeasyLogoIcon"; import * as Button from "@components/ButtonNew"; import * as Input from "@components/InputNew"; import AntDesign from "@expo/vector-icons/AntDesign"; import { LOG } from "@logger"; import { Text, View } from "react-native"; import PaymentType from "@/features/pay/components/PaymentType"; import type { PaymentStackScreenComponentProps } from "@/navigations/types"; const _log = LOG.extend("NumberAndOtpForPaymentScreen"); const NumberAndOtpForPaymentScreen: PaymentStackScreenComponentProps< "numberAndOtpForPaymentScreen" > = ({ navigation, route }) => { return ( navigation.goBack()} /> Montant à payé {route.params.amount} Entrer le numéro Code OTP Confirmer ); }; export default NumberAndOtpForPaymentScreen;