signal-desktop/ts/components/conversation/ResetSessionNotification.tsx
2020-09-21 15:42:51 -04:00

13 lines
299 B
TypeScript

import React from 'react';
import { LocalizerType } from '../../types/Util';
export interface Props {
i18n: LocalizerType;
}
export const ResetSessionNotification = ({ i18n }: Props): JSX.Element => (
<div className="module-reset-session-notification">
{i18n('sessionEnded')}
</div>
);