mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-19 18:10:17 -04:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
|
|
export default function Page() {
|
|
const router = useRouter();
|
|
|
|
router.push("/auth/login");
|
|
|
|
return <h1>GO TO LOGIN PAGE (/auth/login)</h1>;
|
|
}
|