Petropoulos Evangelos 1f7b2dc188 Transactions page
2025-06-18 20:56:14 +03:00

13 lines
363 B
TypeScript

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