blob: a99dd8b24c376d0474b758bd13dcf91fcc2b0511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import {useAppDispatch, useAppSelector} from "@/hooks.ts";
import {Pagination, PaginationContent, PaginationItem, PaginationNext} from "@/components/ui/pagination.tsx";
import React from "react";
import {ProfileQuestionFull} from "@/pages/Questions.tsx";
const TransactionHistoryPage = () => {
const dispatch = useAppDispatch()
const transactionHistory = useAppSelector(state => state.transactionHistory)
return (
<>
{
transactionHistory.map(th => {
})
}
</>
)
}
export {
TransactionHistoryPage
}
|