Files
web/app/[lang]/(live-current)/not-found.tsx

14 lines
279 B
TypeScript

"use client"
import { useParams } from "next/navigation"
import NotFound from "@/components/Current/NotFound"
import { LangParams } from "@/types/params"
export default function NotFoundPage() {
const { lang } = useParams<LangParams>()
return <NotFound lang={lang} />
}