ultisuite-client/app/mail/layout.tsx
2026-05-15 17:40:17 +02:00

10 lines
187 B
TypeScript

import { MailAppShell } from "./mail-app-shell"
export default function MailLayout({
children,
}: {
children: React.ReactNode
}) {
return <MailAppShell>{children}</MailAppShell>
}