2025-06-20 08:16:39 +02:00

15 lines
321 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 KycPage() {
return (
<div>
<Typography variant="h4" gutterBottom>
KYC Overview
</Typography>
</div>
);
}