aboutsummaryrefslogtreecommitdiff
path: root/src/pages/TransactionHistory.tsx
diff options
context:
space:
mode:
authorMax Nanis2025-06-10 05:21:19 +0700
committerMax Nanis2025-06-10 05:21:19 +0700
commitd7bb480ab6bd2172a04ecb304d012206e0c03e8f (patch)
tree783c57ea92e9bf50aec460e2e9b4a9e0ef7a512b /src/pages/TransactionHistory.tsx
parentabec6d734cde8a2bb0924989b1c5801e924137c3 (diff)
downloadpanel-ui-d7bb480ab6bd2172a04ecb304d012206e0c03e8f.tar.gz
panel-ui-d7bb480ab6bd2172a04ecb304d012206e0c03e8f.zip
Adding taskStatus fetch. Showing list of Task Attempts & starting heatmap calendar.
Diffstat (limited to 'src/pages/TransactionHistory.tsx')
-rw-r--r--src/pages/TransactionHistory.tsx24
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