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

14 lines
299 B
TypeScript
Raw Normal View History

import React from 'react';
2019-01-14 21:49:58 +00:00
import { LocalizerType } from '../../types/Util';
export interface Props {
2019-01-14 21:49:58 +00:00
i18n: LocalizerType;
}
2020-09-14 19:51:27 +00:00
export const ResetSessionNotification = ({ i18n }: Props): JSX.Element => (
<div className="module-reset-session-notification">
{i18n('sessionEnded')}
</div>
);