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