13 lines
240 B
TypeScript
13 lines
240 B
TypeScript
import LoginPage from "@/fsd/pages/LoginPage";
|
|
import RedirectPage from "@/fsd/pages/RedirectPage";
|
|
import VacansyPage from "@/fsd/pages/VacansyPage";
|
|
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<RedirectPage/>
|
|
</>
|
|
)
|
|
}
|