import React from 'react'; import { Meteor } from 'meteor/meteor'; import Icon from '../../components/Icon/Icon'; import { withTranslation, Trans } from 'react-i18next'; import { Helmet } from 'react-helmet-async'; import './Logout.scss'; class Logout extends React.Component { componentDidMount() { Meteor.logout(); } render() { return (
{this.props.t('AppName')}: {this.props.t('Cerrar sesión')}

Gracias por Participar

También puedes seguirnos en la web

); } } Logout.propTypes = {}; export default withTranslation()(Logout);