import React, { FC, memo } from '../../lib/teact/teact'; import useLang from '../../hooks/useLang'; import useHistoryBack from '../../hooks/useHistoryBack'; import Button from '../ui/Button'; import ChatList from './main/ChatList'; import { LeftColumnContent } from '../../types'; import './ArchivedChats.scss'; export type OwnProps = { isActive: boolean; onReset: () => void; onContentChange: (content: LeftColumnContent) => void; }; const ArchivedChats: FC = ({ isActive, onReset, onContentChange }) => { const lang = useLang(); useHistoryBack(isActive, onReset, onContentChange, LeftColumnContent.Archived); return (

{lang('ArchivedChats')}

); }; export default memo(ArchivedChats);