/* eslint react/prop-types: 0 */ import React, { Component } from "react"; import { Col, Container, Row } from "reactstrap"; import logoLine from "../../logos/logo-line-white.svg"; import { Link } from "react-router-dom"; import { AppContext } from "../../AppContext"; import { withTranslation } from "react-i18next"; class LegalNotices extends Component { static contextType = AppContext; constructor(props) { super(props); this.state = {}; } render() { const { t } = this.props; return ( logo

{t("Legal notices")}

Editeur du Site

Association MIEUX VOTER
59 Rue Saint-André des Arts, 75006 Paris

https://mieuxvoter.fr/

Hébergement

Association MIEUX VOTER
59 Rue Saint-André des Arts, 75006 Paris

https://mieuxvoter.fr/

Développement

Association MIEUX VOTER
59 Rue Saint-André des Arts, 75006 Paris

https://mieuxvoter.fr/

{t("Go back to homepage")}
); } } export default withTranslation()(LegalNotices);