18 lines
436 B
TypeScript
18 lines
436 B
TypeScript
import React from 'react';
|
|
|
|
import { useAccount } from 'soapbox/api/hooks';
|
|
import Account from 'soapbox/components/account';
|
|
|
|
interface IAutosuggestAccount {
|
|
id: string
|
|
}
|
|
|
|
const AutosuggestAccount: React.FC<IAutosuggestAccount> = ({ id }) => {
|
|
const { account } = useAccount(id);
|
|
if (!account) return null;
|
|
|
|
return <Account account={account} hideActions showProfileHoverCard={false} />;
|
|
|
|
};
|
|
|
|
export default AutosuggestAccount;
|