Petropoulos Evangelos 4661db483d advanced search
2025-07-05 18:23:44 +03:00

14 lines
361 B
TypeScript

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