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

export default class xing extends Component {
    render() {
        return (
            <div>
                <h3>XING Plugin</h3>
                <p>Our website uses features provided by the XING network. The provider is XING AG, Dammtorstraße 29-32, 20354 Hamburg,
                    Germany.</p>
                <p>Each time one of our pages containing XING features is accessed, your browser establishes a direct connection to the
                    XING servers. To the best of our knowledge, no personal data is stored in the process. In particular, no IP addresses
                    are stored nor is usage behavior evaluated.</p>
                <p>For more information about data protection and the XING Share button, please see the XING privacy policy at
                    <a href="https://www.xing.com/app/share?op=data_protection" target="_blank">https://www.xing.com/app/share?op=data_protection</a>.</p>
            </div>
        );
    }
}