11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
import { overview } from "@/constants/routes/myPages"
|
|
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default function MyPages({ params }: PageArgs<LangParams>) {
|
|
redirect(overview[params.lang])
|
|
return null
|
|
}
|