1 import { c } from 'ttag';
3 const PayPalInfoMessage = () => {
4 const payPalInfoMessage = c('Info')
5 .t`We will redirect you to PayPal in a new browser tab to complete this transaction. If you use any pop-up blockers, please disable them to continue.`;
7 return <div>{payPalInfoMessage}</div>;
10 export default PayPalInfoMessage;