mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 11:24:35 +00:00
6 lines
121 B
TypeScript
6 lines
121 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function DashboardPage() {
|
|
redirect("/dashboard/users");
|
|
}
|