import React from 'react'; import RelativeTimestamp from 'soapbox/components/relative-timestamp'; import { Avatar, HStack, Stack, Text } from 'soapbox/components/ui'; import VerificationBadge from 'soapbox/components/verification_badge'; import type { IChat } from 'soapbox/queries/chats'; interface IChatInterface { chat: IChat, onClick: (chat: any) => void, } const Chat: React.FC = ({ chat, onClick }) => { return ( ); }; export default Chat;