Files
boss/src/app/auth/login/page.tsx
2026-05-17 02:20:08 +08:00

8 lines
268 B
TypeScript

import { EnterpriseAdminLoginShell } from "@/components/enterprise-admin-login-shell";
import { redirectIfAuthenticated } from "@/lib/boss-auth";
export default async function LoginPage() {
await redirectIfAuthenticated();
return <EnterpriseAdminLoginShell />;
}