Files
History-user/src/app/editor/page.tsx
T
2026-05-02 02:48:17 +07:00

8 lines
199 B
TypeScript

import { redirect } from "next/navigation";
export default function EditorIndexPage() {
// Editor must be opened from a specific project (see /user/projects).
redirect("/user/projects");
}