import React from 'react'; import { Avatar, HStack, Stack, Text } from 'soapbox/components/ui'; import VerificationBadge from 'soapbox/components/verification_badge'; interface IResults { accounts: { display_name: string acct: string id: string avatar: string verified: boolean }[] onSelect(id: string): void } const Results = ({ accounts, onSelect }: IResults) => ( <> {(accounts || []).map((account: any) => ( ))} ); export default Results;