diff --git a/donutshop/app/screen/Payment.tsx b/donutshop/app/screen/Payment.tsx index 946df46..7c2b07e 100644 --- a/donutshop/app/screen/Payment.tsx +++ b/donutshop/app/screen/Payment.tsx @@ -1,6 +1,29 @@ import { View, Text } from 'react-native' import React from 'react' + +const PaymentOption = [ + { + id: 1, + name: 'Debit/Credit ', + icon: '', + iconStatus: true, + }, + { + id: 2, + name: 'Apple Pay', + icon: '', + iconStatus: false, + }, + { + id: 3, + name: 'PayPal', + icon: '', + iconStatus: false, + } +] + + const Payment = () => { return (