signal-desktop/ts/components/conversation/ResetSessionNotification.tsx

20 lines
383 B
TypeScript
Raw Normal View History

import React from 'react';
2019-01-14 13:49:58 -08:00
import { LocalizerType } from '../../types/Util';
export interface Props {
2019-01-14 13:49:58 -08:00
i18n: LocalizerType;
}
export class ResetSessionNotification extends React.Component<Props> {
public render() {
const { i18n } = this.props;
return (
<div className="module-reset-session-notification">
{i18n('sessionEnded')}
</div>
);
}
}