2025-06-18 18:36:28 +02:00

15 lines
334 B
TypeScript

// This ensures this component is rendered only on the client side
'use client';
import Typography from '@mui/material/Typography';
import React from 'react';
export default function TransactionPage() {
return (
<div>
<Typography variant="h4" gutterBottom>
Transaction Overview
</Typography>
</div>
);
}