Files
cash-stacks/frontend/src/hooks/getMany/useTransactions.ts
T
Elijah Lucian 2ebe8bcd1f almost mvp
2021-07-16 22:07:41 -06:00

5 lines
160 B
TypeScript

import { Transaction } from '../../types'
import { useGet } from '../util/useGet'
export const useTransactions = () => useGet<Transaction[]>(`/transactions/`)