blob: 6f30b146e719554f9d7dca1a4bb64e5482f7216f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import {useAppDispatch, useAppSelector} from "@/hooks.ts";
const TransactionHistoryPage = () => {
const dispatch = useAppDispatch()
const transactionHistory = useAppSelector(state => state.transactionHistory)
return (
<>
{
transactionHistory.map(() => {
})
}
</>
)
}
export {
TransactionHistoryPage
}
|