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 (
); } } Logout.propTypes = {}; export default withTranslation()(Logout);