import React, { Component } from "react"; import { Col, Container, Row } from "reactstrap"; import {withTranslation} from 'react-i18next'; import logoLine from "../../logos/logo-line-white.svg"; import { Link } from "react-router-dom"; import { AppContext } from "../../AppContext"; import Helloasso from "../banner/Helloasso"; class VoteSuccess extends Component { static contextType = AppContext; render() { const {t} = this.props; return ( logo

{t("Your participation was recorded with success!")}

{t("Thanks for your participation.")}

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