6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function Admin() {
|
|
// TODO: Replace with Layout State Manager
|
|
redirect("/Admin/Login");
|
|
}
|