7b5d4c3255
* Refactor Modal folder and setup basic addassetsmodal * basic tables * Update basic logic * small fixes * Update closing for modals * fix slider update bug and set borrowing subtitle * fix store * add missing dependency * fix tests for VaultBorrowings * Add DisplayCurrency test for VaultBorrowings * trigger updated * update borrowModal import path * update imports for modals * updating paths again * update structure of modals directory * fix all file naming and relative imports * fix icon spacing button and jest.mocked import * fix icon classes for button * change Map to array and add BNCoin * add AssetImage * update logic for selecting borrow denoms
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import usePrices from 'hooks/usePrices'
|
|
|
|
export default function usePrice(denom: string) {
|
|
const { data: prices } = usePrices()
|
|
|
|
return prices.find((coin) => coin.denom === denom)?.amount ?? 0
|
|
}
|