account count not doing the count

This commit is contained in:
Elijah Lucian
2021-07-15 23:10:50 -06:00
parent 01a1876b3d
commit 4cfdd5a677
5 changed files with 16 additions and 20 deletions
+7
View File
@@ -0,0 +1,7 @@
import { useAccounts } from '../../hooks/getMany/useAccounts'
export const AccountList = () => {
const accounts = useAccounts()
return <div>Account Count: {accounts.data?.length}</div>
}