import React from 'react'; import { LocalizerType } from '../../types/Util'; interface Props { i18n: LocalizerType; } export class ResetSessionNotification extends React.Component { public render() { const { i18n } = this.props; return (
{i18n('sessionEnded')}
); } }