chore: heygermany customer project
This commit is contained in:
13
apps/website/views/localized/app/company/page.tsx
Normal file
13
apps/website/views/localized/app/company/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { useEffect } from 'react';
|
||||
import { useNavigate, useParams } from '@tanstack/react-router';
|
||||
|
||||
export default function CompanyPage() {
|
||||
const navigate = useNavigate();
|
||||
const { lang } = useParams({ strict: false });
|
||||
|
||||
useEffect(() => {
|
||||
navigate({ to: `/${lang}/company/candidates`, replace: true });
|
||||
}, [navigate, lang]);
|
||||
|
||||
return null;
|
||||
}
|
||||
Reference in New Issue
Block a user