/* eslint react/prop-types: 0 */ import React from "react"; import { withTranslation } from "react-i18next"; import { Link } from "react-router-dom"; import Paypal from "../banner/Paypal"; import { useBbox } from "./useBbox"; import "./footer.css"; const Footer = props => { const linkStyle = { whiteSpace: "nowrap" }; const { t } = props; const [bboxLink1, link1] = useBbox(); const [bboxLink2, link2] = useBbox(); const [bboxLink3, link3] = useBbox(); const [bboxLink4, link4] = useBbox(); const [bboxLink5, link5] = useBbox(); const [bboxLink6, link6] = useBbox(); const [bboxLink7, link7] = useBbox(); return ( ); }; export default withTranslation()(Footer);