@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
9 lines • 376 B
JavaScript
export function useLeftAccountsModule(params, { useAccountData, accountsCount, }) {
const accountData = useAccountData(params);
return accountData.map(({ label, count }) => ({
leftElement: count > 0 ? accountsCount({ label }) : undefined,
description: count > 0 ? label : undefined,
count,
}));
}
//# sourceMappingURL=useLeftAccounts.js.map