import React from 'react'; import { Button, Modal, VStack, HStack, Text, Radio, Center, } from 'native-base'; import { useState } from 'react'; export const Example = () => { const [showModal, setShowModal] = useState(false); const [showModal2, setShowModal2] = useState(false); const [showModal3, setShowModal3] = useState(false); return (
setShowModal(false)} size="lg"> Order Sub Total $298.77 Tax $38.84 Total Amount $337.61 setShowModal2(false)} size="lg"> Select Address 4140 Parker Rd. Allentown, New Mexico 31134 6391 Elign St. Celina, Delaware 10299 setShowModal3(false)}> Payment Options Cash on delivery Credit/ Debit/ ATM Card UPI
); };