Fixed Ttitles
This commit is contained in:
parent
f45df1eeae
commit
fd5e50e14c
@ -1,13 +1,15 @@
|
||||
// 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 ApprovePage() {
|
||||
return (
|
||||
<div>
|
||||
{/* This page will now be rendered on the client-side */}
|
||||
<h1>Approve</h1>
|
||||
<Typography variant="h4" gutterBottom>
|
||||
Approve Overview
|
||||
</Typography>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@ -1,13 +1,15 @@
|
||||
// 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 InvestigatePage() {
|
||||
return (
|
||||
<div>
|
||||
{/* This page will now be rendered on the client-side */}
|
||||
<h1>Investigate</h1>
|
||||
<div>
|
||||
<Typography variant="h4" gutterBottom>
|
||||
Investigate Overview
|
||||
</Typography>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@ -9,7 +9,6 @@ const DashboardPage = () => {
|
||||
<Typography variant="h4" gutterBottom>
|
||||
Dashboard Overview
|
||||
</Typography>
|
||||
{/* Add your dashboard content here */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
@ -1,13 +1,15 @@
|
||||
// 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>
|
||||
{/* This page will now be rendered on the client-side */}
|
||||
<h1>Transactions</h1>
|
||||
<div>
|
||||
<Typography variant="h4" gutterBottom>
|
||||
Transaction Overview
|
||||
</Typography>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user