chore: heygermany customer project
This commit is contained in:
16
apps/website/views/[lang]/(app)/company/auth/login/page.tsx
Normal file
16
apps/website/views/[lang]/(app)/company/auth/login/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
'use client';
|
||||
|
||||
import { LoginComponent, LoginFormData } from '@/components/LoginComponent';
|
||||
import { useCompanyLogin } from '@/hooks/company/useCompanyLogin';
|
||||
import { useRouter } from '@/framework/navigation';
|
||||
|
||||
export default function CompanyLogin() {
|
||||
const login = useCompanyLogin();
|
||||
|
||||
return (
|
||||
<LoginComponent
|
||||
namespace="company"
|
||||
mutation={login}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user