2025-06-30 09:00:30 +02:00

15 lines
258 B
TypeScript

// '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>
);
}