| 5 | import { useEffect } from 'react' |
| 6 | |
| 7 | interface PaymentStatusProps { |
| 8 | orderEmail: string |
| 9 | orderId: string |
| 10 | isPaid: boolean |
| 11 | } |
| 12 | |
| 13 | const PaymentStatus = ({ |
| 14 | orderEmail, |
nothing calls this directly
no outgoing calls
no test coverage detected