You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
350 B
TypeScript

// frontend/app/mail/[[...slug]]/page.tsx — 메일 페이지 (옵셔널 캐치올: /mail, /mail/<id>)
// <id> 세그먼트는 MailClient 가 useParams() 로 읽어 해당 메일을 바로 연다.
import "@/styles/mail.css";
import { MailClient } from "@/components/mail/MailClient";
export default function MailPage() {
return <MailClient />;
}