1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-09-21 04:20:37 +02:00
pingvin-share/frontend/src/pages/auth/signIn.tsx

21 lines
450 B
TypeScript
Raw Normal View History

2022-04-25 15:15:17 +02:00
import { useRouter } from "next/router";
import AuthForm from "../../components/auth/AuthForm";
2022-04-28 15:31:37 +02:00
import Meta from "../../components/Meta";
import useUser from "../../hooks/user.hook";
2022-04-25 15:15:17 +02:00
const SignIn = () => {
const user = useUser();
2022-04-25 15:15:17 +02:00
const router = useRouter();
if (user) {
2022-04-25 15:15:17 +02:00
router.replace("/");
} else {
2022-04-28 15:31:37 +02:00
return (
<>
<Meta title="Sign In" />
<AuthForm mode="signIn" />
</>
);
2022-04-25 15:15:17 +02:00
}
};
export default SignIn;