10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import React from 'react';
|
|
import { Mail } from './components/mail';
|
|
|
|
export function MailPage() {
|
|
return (
|
|
<div className="h-screen">
|
|
<Mail />
|
|
</div>
|
|
);
|
|
}
|