import React from 'react'; import { useAccount } from 'soapbox/api/hooks'; import Account, { IAccount } from 'soapbox/components/account'; interface IAccountContainer extends Omit { id: string } const AccountContainer: React.FC = ({ id, ...props }) => { const { account } = useAccount(id); return ( ); }; export default AccountContainer;