Files
KartHall/front/src/app/HomeRedirect.js
2026-01-30 20:09:37 +04:00

10 lines
298 B
JavaScript

import {paths} from "../path";
import {Loading} from "../components/core/Loading";
export function HomeRedirect({auth}) {
const redirectPath = auth ? paths.dashboard.overview : paths.auth.signIn;
window.location.replace(redirectPath);
return (
<Loading loading={true}/>
)
}