Petropoulos Evangelos d354ac1760 dummy
2025-07-06 18:39:59 +03:00

14 lines
348 B
TypeScript

// This ensures this component is rendered only on the client side
import TransactionTable from "@/app/features/Pages/Transactions/Transactions";
export default function TransactionPage() {
return (
<div style={{ width: "70%" }}>
{/* This page will now be rendered on the client-side */}
<TransactionTable />
</div>
);
}