6 lines
112 B
TypeScript
6 lines
112 B
TypeScript
|
|
import { redirect } from "next/navigation";
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
redirect("/leafcutter/home");
|
||
|
|
}
|