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