import React, { Component } from "react"; import {withTranslation} from 'react-i18next'; import { Link } from "react-router-dom"; import { FlagIcon } from '../flag' import i18n from '../../i18n' import Helloasso from "../banner/Helloasso"; class Footer extends Component { constructor(props) { super(props); this.state = { }; } render() { const buttonStyle = {backgroundColor: "black", padding: "0px", border: "0px",}; const linkStyle = {whiteSpace: "nowrap"}; const {t} = this.props; return ( ); } } export default withTranslation()(Footer);