import React from 'react'; import { useAccount } from 'soapbox/api/hooks'; import Account from 'soapbox/components/account'; interface IAutosuggestAccount { id: string } const AutosuggestAccount: React.FC = ({ id }) => { const { account } = useAccount(id); if (!account) return null; return ; }; export default AutosuggestAccount;