15 lines
258 B
TypeScript
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>
|
|
);
|
|
}
|