7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function HomePage() {
|
|
// Redirect immediately to /all-customers
|
|
redirect("/all-customers");
|
|
}
|