15 lines
327 B
TypeScript
15 lines
327 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 ApprovePage() {
|
|
return (
|
|
<div>
|
|
<Typography variant="h4" gutterBottom>
|
|
Approve Overview
|
|
</Typography>
|
|
</div>
|
|
);
|
|
} |