import React, { Component } from "react"; import { withTranslation } from "react-i18next"; import { Link } from "react-router-dom"; import Paypal from "../banner/Paypal"; class Footer extends Component { constructor(props) { super(props); this.state = {}; } render() { const linkStyle = { whiteSpace: "nowrap" }; const { t } = this.props; return ( ); } } export default withTranslation()(Footer);