import React, { Component } from 'react';
import PropTypes from "prop-types"

export default class paypal extends Component {
    render() {
        return (
            <div>
                <h3>PayPal</h3>
                <p>Our website accepts payments via PayPal. The provider of this service is PayPal (Europe) S.à.r.l & Cie, S.C.A. (22-24
                    Boulevard Royal, L-2449 Luxembourg.</p>
                <p>If you select payment via PayPal, the payment data you provide will be supplied to PayPal based on Art. 6 (1) (a) (Consent)
                    and Art. 6 (1) (b) DSGVO (Processing for contract purposes). You have the option to revoke your consent at any time
                    with future effect. It does not affect the processing of data previously collected.</p>
            </div>
        );
    }
}