6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
export default function ExamsPage() {
|
|
redirect("/teacher/exams/all")
|
|
}
|