diff options
Diffstat (limited to 'src/pages/TransactionHistory.tsx')
| -rw-r--r-- | src/pages/TransactionHistory.tsx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pages/TransactionHistory.tsx b/src/pages/TransactionHistory.tsx new file mode 100644 index 0000000..a99dd8b --- /dev/null +++ b/src/pages/TransactionHistory.tsx @@ -0,0 +1,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 +}
\ No newline at end of file |
