From d7bb480ab6bd2172a04ecb304d012206e0c03e8f Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Tue, 10 Jun 2025 05:21:19 +0700 Subject: Adding taskStatus fetch. Showing list of Task Attempts & starting heatmap calendar. --- src/pages/TransactionHistory.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/pages/TransactionHistory.tsx (limited to 'src/pages/TransactionHistory.tsx') 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 -- cgit v1.2.3