mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-09-13 18:59:25 +00:00
6 lines
121 B
TypeScript
6 lines
121 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function DashboardPage() {
|
|
redirect("/dashboard/users");
|
|
}
|