8 lines
268 B
TypeScript
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 />;
|
|
}
|