Files
myeasycms-v2/apps/web/app/auth/layout.tsx
2026-03-11 14:47:47 +08:00

10 lines
265 B
TypeScript

import { AuthLayoutShell } from '@kit/auth/shared';
import { AppLogo } from '~/components/app-logo';
function AuthLayout({ children }: React.PropsWithChildren) {
return <AuthLayoutShell Logo={AppLogo}>{children}</AuthLayoutShell>;
}
export default AuthLayout;