mediahub-fe/app/[locale]/[...not-found]/page.tsx

8 lines
107 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import { notFound } from "next/navigation";
const page = () => {
notFound();
};
export default page;